.faq__list{
    list-style-type: none;
    margin: 0;
    position: relative;
    padding: 0;
}
.faq__item{margin-bottom: 15px;position: relative;}
.faq__item:last-child{margin-bottom: 0;}
.faq__item--boxed{
    padding: 5px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px 0px #0a00370f;
    border: 1px solid #cfcfcf36;
    flex-direction: column;
    gap: 0!important;
}
.faq__item--boxed::before{content: none!important;}
.faq__question{
    position: relative;
    padding: 15px 15px 15px 50px;
    transition: all 500ms ease;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
}
.faq__arrow{
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: 15px;
    transition: all .3s ease;
    color: var(--basic-company);
}
.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: 10px;
    line-height: 1.6;
    font-weight: normal;
    font-family: inherit;
}