/* ---------------------------------------------------
    FAQ – Style optimisé
--------------------------------------------------- */

.faq-wrapper {
    margin: 3rem 0;
}

.faq-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem !important;
    padding-top: 2rem !important;
}

/* FAQ Item */
.faq-item {
    padding: 0.8rem 0; /* ligne légèrement plus haute */
}

/* Question */
.faq-question {
    padding: 14px 28px 14px 22px; /* marge interne gauche/droite */
    margin: 0;
	text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #000;
}

/* Symbole + / – */
.faq-question::after {
    content: "+";
    font-size: 22px;
    margin-left: 1rem; /* espace entre texte et symbole */
}

.faq-item.active .faq-question::after {
    content: "–";
}

/* Réponse */
.faq-answer {
    display: none;
    margin-top: 0.8rem;
    padding: 0.2rem 1.6rem 0.8rem 1.6rem;
    font-size: 14px;
	text-align: left;
    color: #555;
    line-height: 1.8;
}

/* Réponse visible */
.faq-item.active .faq-answer {
    display: block;
}

/* Espacement paragraphes */
.faq-answer p {
    margin-bottom: 1rem;
    line-height: inherit;
}

/* Listes */
.faq-answer ul {
    margin: 0 0 1rem 1.4rem;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 0.8rem;
    list-style-type: disc;
    line-height: 1.5;
}
