.faq_list {
    width: 68%;
    overflow: hidden;
}
.faq__item{
    width: 100%;
    background-color: var(--burgundy);
    margin-bottom: 10px;
    padding: 0 30px;
    border-radius: 80px;
    position: relative;
    transition: all .3s ease;
}
.faq__item:last-child {
    margin-bottom: 0;
}
.faq__item.visible {
    border-radius: 40px;
    background: #582c33;
}
.faq__item--boxed{
    padding: 5px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: inset 0 0 6px #0000004d;
}
.faq__question{
    padding: 25px 0;
    text-transform: none;
    border-bottom: 1px solid transparent;
    position: relative;
    transition: all 500ms ease;
    cursor: pointer;
    gap: 20px;
    line-height: 1.2;
    min-height: 74px;
}
.question_text {
    font-size: 24px;
    color: #FFF9E9;
    margin-bottom: 0;
    font-weight: 700;
    transition: all .3s;
    line-height: 1;
}
.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__question.active .see_more_plus {
    transform: rotate(180deg);
}
.faq__content{
    padding: 0 !important;
    border-bottom: none;
    border-radius: 5px;
    position: relative;
    display: none;
}
.faq__answer{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 15px 0 25px;
    position: relative;
    line-height: 1.5;
    border-top: 1px solid #FFFFFF26;
}
.see_more_plus {
    transition: all .3s;
    color: #fff;
    display: flex;
}
.faq-list .faq__item:last-child {
    margin-bottom: 0;
}