/* 🌟 Conteneur général */
.faq-module {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* 🌟 Accordéon */
.accordion {
    border: 1px solid #2db8c4; /* ✅ Contour ajouté */
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: border 0.3s ease-in-out;
}

/* ✨ Effet hover : Contour légèrement plus foncé */
.accordion:hover {
    border-color: #229aa6; /* ✅ Contour au survol */
}

/* 🌟 Bouton de l'accordéon */
.accordion__button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 1rem;
    width: 100%;
    text-align: left;
    outline: none;
    transition: background 0.3s ease-in-out;
    color: #211452;
}

/* 🌟 Titre de la FAQ */
.accordion__title {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: #211452;
}

/* 🌟 Icône flèche */
.accordion__icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #211452;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* 🌟 Animation de la flèche (ouverture) */
.accordion[aria-expanded="true"] .accordion__icon {
    transform: rotate(180deg);
    color: #211452;
}

/* 🌟 Contenu de la FAQ */
.accordion__content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
    padding: 0 1rem;
}

/* 🌟 Contenu visible avec animation fluide */
.accordion[aria-expanded="true"] .accordion__content {
    opacity: 1;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    padding: 1rem;
}

/* 🌟 Texte de la réponse */
.accordion__item-content {
    font-size: 1rem;
    line-height: 1.5;
    color: #211452;
