.faq-titre {
    font-family: var(--font-titre);
    font-size: 2rem;
    color: var(--blanc);
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--rouge);
}

.faq-accordion {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: var(--noir-sec);
    border: 1px solid var(--gris-sombre);
    border-left: 3px solid var(--rouge);
    border-radius: 4px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--blanc);
    font-family: var(--font-titre);
    font-size: 0.95rem;
    text-align: left;
    padding: 1rem 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background ease .25s;
}

.faq-question:hover {
    background: rgba(192,57,43,0.08);
}

.faq-icon {
    color: var(--rouge);
    font-size: 1.3rem;
    font-weight: 700;
    transition: transform ease .25s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-reponse {
    max-height: 0;
    overflow: hidden;
    transition: max-height ease .3s;
}

.faq-reponse p {
    color: var(--gris-clair);
    line-height: 1.7;
    padding: 0 1.25rem 1.25rem;
    margin: 0;
}

.faq-item.open .faq-reponse {
    max-height: 300px;
}