section.faqs .container-custom {
    width: 82%;
    margin: auto;
}

section.faqs ul {
    padding-left: 0;
    margin-bottom: 100px;
}

section.faqs ul.faqs-tabs.d-flex {
    justify-content: space-between;
}

.accordion p.accordion-header {
    font-size: 20px !important;
    line-height: 26px !important;
    font-family: 'Segoe UI' !important;
    text-transform: uppercase;
    color: #fff !important;
    margin-bottom: 0 !important;
}

.accordion-button:not(.collapsed) p.accordion-header {
    font-size: 30px !important;
    color: #fff !important;
    margin-top: 0 !important;
}

section.faqs ul li {
    display: flex;
    list-style-type: none;
    font-size: 20px;
    line-height: 26px;
    font-family: 'Segoe UI';
    background: #33200F;
    color: #fff;
    width: 335px;
    height: 90px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
}

section.faqs ul li.active {
    color: #e3cb52;
}

section.faqs ul li img {
    margin-right: 10px;
}
section .accordion-body p{
    margin-bottom: unset!important;
}

ul.faqs-tabs.d-flex {
    gap: 30px;
}


@media (max-width: 991px) {
    section.faqs .container-custom {
        width: 100%;
    }
    .accordion-button:not(.collapsed) p.accordion-header {
        font-size: 20px !important;
    }
}

@media (max-width: 575px) {
    section.faqs ul.faqs-tabs.d-flex {
        flex-direction: column;
    }

    section.faqs ul li {
        width: 100%;
    }
}