
.pageFAQ{
    padding-block: 100px;
    max-width: 1600px;
}

.pageFAQ h1{
    margin-bottom: 30px;
}

.pageFAQ .faq-wrapper{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.pageFAQ .faq-wrapper .faq-category .category-title{
    margin-bottom: 20px;
}

.pageFAQ .faq-wrapper .faq-category .questions-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pageFAQ .faq-wrapper .faq-category .questions-list .faq-item{
    background-color: #dbc0d3;
    border-radius: 30px;
}

.pageFAQ .faq-wrapper .faq-category .questions-list .faq-item .faq-question{
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: var(--purpleDark);
    font-size: 22px;
    line-height: 26px;
}

.pageFAQ .faq-wrapper .faq-category .questions-list .faq-item .faq-question::marker{
    content: "";
    display: none;
}

.pageFAQ .faq-wrapper .faq-category .questions-list .faq-item .faq-question::after{
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg id='Groupe_3677' data-name='Groupe 3677' transform='translate(-1570.5 -2368)'%3E%3Crect id='Rectangle_217' data-name='Rectangle 217' width='3' height='24' transform='translate(1581 2368)' fill='%23450e33'/%3E%3Crect id='Rectangle_218' data-name='Rectangle 218' width='3' height='24' transform='translate(1594.5 2378.5) rotate(90)' fill='%23450e33'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.pageFAQ .faq-wrapper .faq-category .questions-list .faq-item[open] .faq-question::after{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='3' viewBox='0 0 24 3'%3E%3Crect id='Rectangle_218' data-name='Rectangle 218' width='3' height='24' transform='translate(24) rotate(90)' fill='%23450e33'/%3E%3C/svg%3E%0A");
}

.pageFAQ .faq-wrapper .faq-category .questions-list .faq-item .faq-answer{
    padding: 0px 30px 30px 30px;
}

@media (max-width: 992px) {
    .pageFAQ{
        padding-block: 50px;
        }
    .pageFAQ .faq-wrapper .faq-category .questions-list .faq-item .faq-question{
        padding: 20px;
        font-size: 18px;
        line-height: 22px;
    }
    .pageFAQ .faq-wrapper .faq-category .questions-list .faq-item .faq-question::after{
        width: 19px;
        height: 19px;
        min-width: 19px;
    }
    .pageFAQ .faq-wrapper .faq-category .questions-list .faq-item .faq-answer{
        padding: 0px 20px 20px 20px;
    }
}