.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{
    margin-bottom: 12px;
    position: relative;
}
.faq__item:last-child{
    margin-bottom: 0;
}
.faq__item--boxed{
    background-color: var(--bg-light);
}
.faq__question{
    position: relative;
    padding: 20px 16px;
    transition: all .3s ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: var(--body-text);
}

.faq__question.active {
    background-color: #ecd8b1;
    color: var(--body-text);
}
.faq__item--boxed.visible {
    background-color: #ecd8b1;
}
.faq__content{
    position: relative;
    display: none;
    padding: 20px 16px;
    border-top: 1px solid #e1c590;
}
.faq__answer{
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    font-family: inherit;
    color: var(--body-text);
}
@media only screen and (max-width : 767px) {
    .faq__question{
        font-weight: 500;
        font-size: 14px;
    }
}