/* Fichier: Assets/stylesforaboutus.css */

/* Conteneur principal */
.about-us-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: sans-serif; /* Conserver la police cohérente */
    line-height: 1.7;
    color: #333;
}

/* Titre principal de la page */
.about-us-content h1 {
    font-size: 2.5em;
    color: #1a4d8c; 
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Titres des sections (H2) */
.about-us-content h2 {
    font-size: 1.8em;
    color: #2c3e50; 
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Paragraphe d'introduction */
.about-us-content .intro-paragraph {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 25px;
}

/* Style des listes de valeurs */
.section-values ul {
    list-style: none; /* Enlever les puces par défaut */
    padding-left: 0;
    margin-bottom: 30px;
}

.section-values ul li {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid #e74c3c; /* Couleur d'accentuation */
    border-radius: 4px;
}

.section-values ul li strong {
    color: #e74c3c;
    display: inline-block;
    margin-right: 5px;
}

/* Style des membres de l'équipe */
.team-member {
    padding: 15px 20px;
    background: #f4f4f4;
    border-radius: 5px;
    margin-bottom: 20px;
}

.team-member .member-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #1a4d8c;
    margin-bottom: 5px;
}

.team-member .member-title {
    font-style: italic;
    color: #666;
}

/* Style spécifique pour le lien dans la section Rejoignez Notre Communauté (LinkedIn) */
.section-join a {
    color: #0077B5; /* Bleu LinkedIn */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.section-join a:hover {
    color: #1a4d8c; /* Couleur de votre marque au survol */
    text-decoration: underline;
}

/* Message de remerciement final */
.about-us-content .final-message {
    text-align: center;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

/* Media Query pour les petits écrans */
@media (max-width: 768px) {
    .about-us-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    .about-us-content h1 {
        font-size: 2em;
    }
    .about-us-content h2 {
        font-size: 1.6em;
    }
}