.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{
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
}
.faq__question{
    position: relative;
    padding: 20px 100px 20px 16px;
    transition: all 500ms ease;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: var(--basic-company);
    display: flex;
}
.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 .faq__arrow{transform: rotate(-180deg);}
.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: 20px 16px 20px 16px;
}
