#section_faq {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 175px 0;
    margin: 0 auto;
    overflow: hidden;
}

#section_faq .faq-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/slide-03.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -1;
    will-change: transform;
}
#section_faq .faq-background::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(247, 247, 247, 0.9899);
}

#section_faq .faq-content {
    position: relative;
    padding: 0;
    /* background: rgba(255, 255, 255, 0.9); */
    border-radius: 8px;
    z-index: 1;
    width: 1080px;
    margin: auto;
}

#section_faq .faq-content h2 {
    text-align: left;
    font-size: 30px;
    font-weight: 600;
    color: var(--bleu);
}

#section_faq .faq-item {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 5px rgba(167, 167, 167, 0.1);
    margin-bottom: 10px;
    background-color: #fff;
}

#section_faq .faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f9f9f9;
    transition: background-color 0.3s, color 0.3s;
}
#section_faq .faq-question h3{
    position: relative;
    font-size: 20px !important;
}
#section_faq .faq-question:hover {
    background-color: #e0e0e0;
}

#section_faq .faq-question.active {
    background-color: var(--bleu);
    color: var(--orange);
    
    background-image: linear-gradient(90deg, var(--bleu), var(--bleu-clair), rgb(96, 66, 124));
}

#section_faq .faq-answer {
    padding: 20px;
    background-color: #fafafa;
    border-top: 1px solid #f5f5f5;
    font-size: 1em;
    color: #666;
    display: none;
    /* Hide answers by default */
}

#section_faq .faq-answer.active {
    display: block;
    /* Show active answer */
}

#section_faq .faq-question .chevron-icon {
    font-size: 1.2em;
    transition: 0.3s ease all;
    color: var(--noir);
}

#section_faq .faq-question.active .chevron-icon {
    transform: rotate(180deg);
    color: var(--orange);
}