.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item{
    margin-bottom: 0;
    position: relative;
    border: 1px solid #DADADA;
    background-color: #F5F5F5;
}
.faq__item--boxed{
    background-color: #F2F5F4;
    border-radius: 6px;
    border: 1px solid #C6D9D2;
    box-shadow: 0px 4px 17px 0px #0325002B;
}
.faq__item--boxed.visible{
    border: 1px solid #338C55;
    transition: var(--tr-3s);
    box-shadow: 0px 4px 17px 0px transparent;
}
.faq__question{
    position: relative;
    padding: 20px 16px;
    transition: all .3 ease;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--body-text);
    display: flex;
}
.faq__question svg{
    position: absolute;
    right: 10px;
    top: 0px;
    color: var(--basic-company);
}
.faq__arrow{
    position: absolute;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    left: auto;
    right: 16px;
    transition: all .3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3E%3Cpath d='M11 16L20 24L29 16' stroke='%23F06402' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.faq__question.active svg{transform: rotate(-180deg);}
.faq__question.active{color: var(--basic-company);}
.faq__content{
    position: relative;
    display: none;
    padding: 0 0 0 50px;
    border-bottom: 1px solid #f2f2f2;
}
.faq__answer{
    position: relative;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
    padding: 0 16px 16px 16px;
}
.faq__question:hover{
    color: var(--basic-company);
}
