.faq-tabs { margin:20px 0; }
.faq-tab-nav { display:flex; list-style:none; margin: 0px 0px 25px 0px; gap: 10px; overflow-x: auto; padding-bottom: 10px;}
.faq-tab-nav li { list-style: none; padding:12px 16px; background:#fff; margin-right:0px; border-radius: 8px; font-weight: 600; font-size: 16px; line-height: 17px; cursor: pointer; }
.faq-tab-nav li.active { background:#000; color:#fff; cursor: text; }
.faq-tab-nav li::marker {
    display: none;
}
.faq-tab-content { display:none;}
.faq-tab-content.active { display:block; }
.faq-item {margin-bottom: 8px; background-color: #fff;
border-radius: 8px;
padding: 0px 0px 12px 0px;}
.faq-question { 
    cursor:pointer;
    display:flex;
    align-items:center;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0px!important;
    position: relative;
    line-height: 24px;
    padding: 12px 16px 0px 12px;
}
.faq-answer { display:none; padding: 12px 16px;
margin-top: 8px; color: #676767; font-size: 15px; }
.faq-answer p {
    color: #676767; font-size: 15px;
}
.faq-answer.active { display:block; }

.faq-icon {
    width:16px;
    height:16px;
    margin-right:8px;
    transition: all 0.3s ease;
    position: absolute;
    right: 16px;
    top: 16px;
    margin: 0px!important;
}

@media (max-width: 769px) {
    .faq-question {
        padding: 12px 45px 0px 16px;
    }
    .faq-tab-nav li {
        min-width: max-content;
    }
    .faq-answer {
        margin-top: 0px;
    }
}