.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{
    margin-bottom: 16px;
    position: relative;
    border: 1px solid #D6C894;
    border-radius: 2px;
    transition: all .5s ease;
}
.faq__item:last-child{margin-bottom: 0;}
.faq__item:hover .faq__question{background: #383838;color: #FFFFFFE5;}
.faq__item--boxed{
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
}
.faq__question{
    position: relative;
    padding: 16px 16px 16px 16px;
    transition: all .5s ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.faq__question h3{font-size: 20px;line-height: 130%;margin: 0;transition: all .5s ease;}
.faq__question.active h3,
.faq__item:hover .faq__question h3{color: #FFFFFFE5;}
.see_more_icon {
    min-width: 32px;
    height: 32px;
    transition: all .5s ease;
    background-repeat: no-repeat;
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='33' height='33' viewBox='0 0 33 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.75 14.8501L16.5 21.4501L8.25 15.3578' stroke='%232C2C2C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.faq__question.active {
    background: #383838;
    color: #FFFFFFE5;
}
.faq__question.active .see_more_icon,
.faq__item:hover .see_more_icon{
    transform: rotate(-180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='33' height='33' viewBox='0 0 33 33' fill='none'%3E%3Cpath d='M24.75 14.8501L16.5 21.4501L8.25 15.3578' stroke='%23FFFFFFE5' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq__content{
    position: relative;
    display: none;
    padding: 16px;
}
.faq__answer{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 130%;
    font-weight: normal;
    font-family: inherit;
}