#foire-aux-questions-section h2 {
    text-align: center;
}

.accordion-faq {
    color: #444;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border: 1px solid #80ffcc;
    margin-top: 25px;
    border-radius: 15px;
    line-height: 1.5;
    /* <-- multi-line breathing room */
    padding-top: 20px;
    padding-bottom: 20px;
    white-space: normal;
    /* allow multi-line text */
    word-wrap: break-word;
    overflow-wrap: anywhere;
    box-sizing: border-box;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
}

.foire-aux-questions-section-content {
    align-items: flex-start;
    justify-content: space-between;
    display: flex;
}

.foire-aux-questions-section-container-left {
    width: 47.5%;
}

.foire-aux-questions-section-container-right {
    width: 47.5%;
}

.active-faq,
.accordion-faq:hover {
    backdrop-filter: saturate(140%) blur(10px);
    background: rgba(10, 28, 24, .55);
    border: 1px solid #80ffcc;
}

#faq-01:hover #faq-btn-01,
#faq-01:hover #panel-faq-01,
#faq-02:hover #faq-btn-02,
#faq-02:hover #panel-faq-02,
#faq-03:hover #faq-btn-03,
#faq-03:hover #panel-faq-03 {
    transform: scale(1.1);
    cursor: pointer;
}

.active-faq,
.active-faq.accordion-faq:hover {
    border-bottom: none;
    border-radius: 15px 15px 0px 0px;
}

.panel-faq {
    padding: 25px;
    display: none;
    backdrop-filter: saturate(140%) blur(10px);
    background: rgba(10, 28, 24, .55);
    border: 1px solid #80ffcc;
    border-top: none;
    border-radius: 0px 0px 15px 15px;
    overflow: hidden;
    transition: 0.4s;
}

.panel-faq p {
    margin-bottom: 0px;
}

@media screen and (max-width: 1024px) {
    .foire-aux-questions-section-container-left {
        width: 67.5%;
    }

    .foire-aux-questions-section-container-right {
        width: 32.5%;
        margin-right: -10%;
    }
}

@media screen and (max-width: 736px) {
    .foire-aux-questions-section-content {
        flex-direction: column;
    }

    .foire-aux-questions-section-container-left {
        width: 100%;
    }

    .foire-aux-questions-section-container-right {
        width: 100%;
        text-align: center;
        margin-right: -0%;
        margin-top: 50px;

    }
}