.eapps-faq-layout-accordion .eapps-faq-content-category {
    margin-top: 20px;
}
.faqs_section .eapps-faq-content-category-title {
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}
.faqs_section .eapps-faq-content-category-title:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    right: 20px;
    background-image: url(/wp-content/uploads/2025/06/bottom-arrow-icon.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .5s;
}
.faqs_section .eapps-faq-content-category-title.show:after {
    transform: rotate(180deg);
}
.faqs_section .eapps-faq-content-category-title:not(.show) {
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    padding-bottom: 20px;
}
.faqs_section .eapps-faq-content-category-title:not(.show) + div {
    height: 0;
    overflow: hidden;
}
.faqs_section .eapps-faq-content-category-title.show + div {
    height: 100%;
    transition: all .5s;
    margin: 40px 0;
}

@media only screen and (max-width: 768px){
    .faqs_section .eapps-faq-content-category-title {
        padding-right: 32px;
        font-size: 20px;
    }
    .faqs_section .eapps-faq-content-category-title:after {
        width: 16px;
        height: 16px;
        background-size: 16px;
        right: 16px;
    }
}



