.about {
    max-width: 1000px;
    text-align: center;
    color: #2c2c43;
    font-family: Gotham_Book, sans-serif;
    margin: 3rem auto 1rem;
    padding: 1rem 2rem 2rem;
}

.about h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a2c56;
    font-family: Avenir_Black, sans-serif;
    margin-top: 0.5rem;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about .highlight {
    font-weight: bold;
    color: #0f59aa;
}

.about-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

.team-member {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 25%;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

.team-member h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: #1a2c56;
}

.team-member span {
    font-size: 0.9rem;
    color: #555;
}

.faq {
    max-width: 1000px;
    padding: 1rem 2rem 2rem;
    margin: 1rem auto 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2c56;
}

.faq-item {
    border-bottom: 2px solid #ddd;
    padding: 1rem 0;
}

.faq-question {
    display: flex;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.3rem;
    color: #2c2c43;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0f59aa;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    line-height: 1.6;
    color: #444;
    margin-top: 0.5rem;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

/* Rotation de la flèche quand actif */
.faq-item.active .arrow-icon {
    transform: rotate(180deg);
}

@media (max-width: 1000px) {
    .about {
        margin-top: 1rem;
    }
}

.faq-answer a {
    color: rgb(15, 89, 170);
    font-weight: bold;
    display: inline-block;
    text-decoration: underline;
    transition: color 0.3s;
}

.faq-answer a:hover {
    color: rgb(2, 48, 97);
    transition: color 0.3s;
}

.faq-answer strong {
    color: rgb(13, 65, 120);
}
