/* Style global */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7fb;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Centrer le titre */
.title {
    font-size: 2.5em;
    color: #003366;
    margin-top: 40px;
    text-align: center;
    font-weight: 600;
}

/* Boîte d'informations */
.info-box {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 40px auto;
    width: 85%;
    max-width: 1000px;
    font-size: 1.1em;
}

.info-box p {
    margin: 10px 0;
}

/* Textes en bleu pour certaines informations */
.blue {
    color: #0066cc;
}

/* Conteneur des services */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
}

/* Boîte de chaque service */
.service {
    background-color: #ffffff;
    border-radius: 12px;
    margin: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effet de survol pour les services */
.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Titre de chaque service */
.service h3 {
    color: #003366;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Texte des services */
.service p {
    font-size: 1.1em;
    margin: 5px 0;
}

/* Services en ligne (vert) */
.online {
    color: #28a745; /* Vert plus moderne */
    font-weight: 600;
}

/* Services hors ligne (rouge) */
.offline {
    color: #e74c3c; /* Rouge vif */
    font-weight: 600;
}

/* Appliquer la couleur bleue au texte des services */
.service p:first-child {
    color: #0066cc; /* Bleu pour la description du service */
}

/* Responsive: pour les petits écrans */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .service {
        width: 80%;
    }
}
