.faq-main {
    padding: 30px 0 80px;
}
.faq-main .container {
    flex-direction: column;
}
.faq-top {
    max-width: 880px;
    margin: 0 0 28px;
}

.faq-top .page-title {
    margin: 16px 0 10px;
}

.faq-intro {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.55;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 26px;
}

.faq-tab {
    appearance: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.faq-tab:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-tab.active {
    background: #d4a45c;
    border-color: #d4a45c;
    color: #1b1b1b;
}

.faq-groups {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq-group__title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #fff;
}

.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s ease, background-color .2s ease;
}

.faq-item.is-open {
    border-color: rgba(212, 164, 92, 0.55);
    background: rgba(212, 164, 92, 0.06);
}

.faq-item__head {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: space-between;
}

.faq-item__head:hover {
    color: #d4a45c;
}

.faq-item__q {
    flex: 1 1 auto;
}

.faq-item__icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    position: relative;
    transition: transform .25s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
}

.faq-item__icon::before {
    top: 10px;
    left: 2px;
    width: 18px;
    height: 2px;
}

.faq-item__icon::after {
    top: 2px;
    left: 10px;
    width: 2px;
    height: 18px;
    transition: transform .25s ease;
}

.faq-item.is-open .faq-item__icon::after {
    transform: rotate(90deg);
}

.faq-item__body {
    padding: 0 22px 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
}

.faq-item__body[hidden] {
    display: none;
}

.faq-item__a a {
    color: #d4a45c;
    text-decoration: underline;
}

.faq-empty {
    padding: 60px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.faq-group.is-hidden {
    display: none;
}

@media (max-width: 768px) {
    .faq-main {
        padding: 18px 0 60px;
    }

    .faq-top .page-title {
        font-size: 26px;
    }

    .faq-tabs--scroll {
        flex-wrap: wrap;
        overflow-x: auto;
        scrollbar-width: none;
        margin: 0 -16px 22px;
        padding: 0 16px;
    }

    .faq-tabs--scroll::-webkit-scrollbar {
        display: none;
    }

    .faq-tabs--scroll .faq-tab {
        flex: 0 0 auto;
    }

    .faq-item__head {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-item__body {
        padding: 0 18px 16px;
        font-size: 14px;
    }
}
