
/* ==========================================================================
   COMPOSANT ACCORDEON FAQ ANIME ET STYLÉ
   ========================================================================== */
.faq-container {
    /* max-width: 850px; */
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-left-color: var(--accent-red);
}

.faq-header {
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.faq-item.active .faq-header h3 {
    color: var(--accent-red);
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(10, 37, 64, 0.05);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.faq-icon svg {
    width: 10px;
    height: 10px;
    fill: var(--primary-blue);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    background-color: var(--accent-red);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
    fill: var(--white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1); /* Transition de hauteur fluide */
}

.faq-content {
    padding: 0 25px 20px 25px;
    color: var(--text-light);
    font-size: 0.99rem;
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 3px;
    text-align: justify;
}
