
.faq-list__title {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 30px 0 14px;
}
.faq-list__title h1 {
    font-size: 56px;
    color: #000000;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -3px;
    margin: 0;
    line-height: 1;
}

.faq-list__desc {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    width: 450px;
}
.faq-tab-content{
    display: flex;
    padding-top: 32px;
    padding-bottom: 7px;
}

.faq-tab__left{
    width: 220px;
    padding-right: 25px;
    position: relative;
}
.faq-tab__right {
    width: calc(100% - 220px);
    padding-left: 65px;
    padding-right: 55px;

}
.faq-tab__tab-overflow {
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}
.faq-tab__tab-overflow::-webkit-scrollbar {
    display: none;
}
.faq-tab__tab-overflow:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(90deg, rgba(213, 213, 213, 0.05) 0%, #D5D5D5 50%, rgba(213, 213, 213, 0.05) 100%);
}
.faq-tab__tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    position: relative;
    width: 100%;
    margin: 0;
    text-align: right;
}
.faq-tab__item {
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    padding: 13px 0px;
}
.faq-tab__item.active {
    color: #00238F;
    font-weight: 600;
    position: relative;
}
.faq-tab__item.active:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    right: -25px;
    height: 100%;
    width: 4px;
    background-color: #00238F;
}
.faq-tab__content {
    display: flex;
    position: absolute;
    opacity: 0;
    margin-bottom: 77px;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    width: auto;
    max-width: 100%;
}
.faq-tab__content.active {
    opacity: 1;
    visibility: visible;
    position: static;
}
.accordion{
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.accordion__item{
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 8px 16px rgba(0,0,0,.05);
    overflow: hidden;
    padding:  16px  24px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.accordion__item:hover{
    background:  #FEFEFF;
    transition: all 0.3s ease-in-out;
}
.accordion__head{
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: #000;
    padding: 0;
    font-family: 'NotoSans', sans-serif;
    min-height: 34px;
    transition: all 0.3s ease-in-out;
}
.accordion__icon{
    margin-left: auto;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 11px;
    transition: transform 0.3s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%231F2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.accordion__body{
    max-height: 0;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-right: 2rem;
}
.accordion__content{
    color: rgba(0,0,0,.7);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 10px;
}
.accordion__content h3 {font-size: 14px;font-weight: 700;color: rgba(0,0,0,.7); margin: 5px 0;}
.accordion__content p{ margin: 10px 0; color: inherit;  }
.accordion__content a{ color: inherit; text-decoration: underline; }
.accordion__content ul{ margin: 16px 0; padding: 0; list-style-type: none }
.accordion__content ul li{position: relative;color: rgba(0, 0, 0, 0.7);font-size: 14px;padding-left: 20px;}
.accordion__content ul li:before {
    content: "";
    position: absolute;
    left: 8px;
    top: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 3px;
    height: 3px;
    border-radius: 50%;
}
.accordion__content a.btn-send {
    margin-top: 20px;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    background: #00238F;
    border-radius: 4px;
    text-decoration: none;
    padding: 12px 45px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #00238F;
    cursor: pointer;
    transition: background-color 0.3s
    ease-in-out, border-color 0.3s
    ease-in-out;
}

.accordion__item.active .accordion__icon{ transform: rotate(180deg);     margin-top: 6px;}
.accordion__item.active .accordion__body{
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 3px;
}
.accordion__title{
    display: inline-block;
    color: #000000;
}
.accordion__body { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.accordion__item.active .accordion__head { transition: all 0.3s ease-in-out;}

@media (max-width: 980px) {
    .faq-list__title h1 {
        font-size: 36px;
    }
    .faq-list__desc  {
        width: 100%;
        font-size: 12px;
    }
    .faq-tab-content{
        flex-wrap: wrap;
    }
    .faq-tab__left, .faq-tab__right{
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        width: 100%;
        min-width: 100%;
    }
    .faq-tab__tab-overflow{
        margin-bottom: 24px;
        margin-right: -12px;
        width: 100vw;
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .faq-tab__tab{
        flex-direction: row;
        gap: 32px;
    }
    .faq-tab__tab-overflow:before{
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        width: 100%;
        top: unset;
    }
    .faq-tab__item.active:before{
        left: 0;
        right: 0;
        height: 2px;
        width: 100%;
        top: unset;
    }
    .faq-tab__tab{
        display: inline-flex;
        gap: 32px;
        width: max-content;
        white-space: nowrap;
    }

    .faq-tab__item{
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 12px 0;
        color: rgba(0,0,0,.7);
    }
    .accordion__item.active .accordion__body{ margin-top: 5px;}
    .faq-tab__tab-overflow::-webkit-scrollbar{ height: 0; }
    .faq-tab__tab-overflow{ scrollbar-width: none; }
}
@media (max-width: 575px) {
    .faq-tab__right {
        position: relative;
        width: 108%;
        min-width: 108%;
        left: -4%;
    }
    .accordion__item {
        padding: 15px;
    }
    .accordion__body {
        padding-right: 0;
    }
}