.help-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 180px 20px 150px;
}

.page-header {
    text-align: center;
    margin-bottom: 100px;
}

@media (max-width: 900px) {
    .page-header {
        margin-bottom: 80px;
    }
}

.header-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.header-sub {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.faq-section-title {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 80px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background-color 0.5s var(--ease-luxury);
}

    .faq-item:hover {
        background-color: rgba(255,255,255,0.02);
    }

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    padding: 25px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #999;
    font-size: 1.15rem;
    transition: color 0.4s ease;
}

    .faq-question:hover {
        color: #fff;
    }

    .faq-question.active {
        background: linear-gradient(110deg, #997B2F 0%, #e7d4aa 40%, #FFFFFF 50%, #e7d4aa 60%, #997B2F 100%);
        background-size: 200% 100%;
        background-position: var(--light-pos) 0;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.6s var(--ease-luxury);
}

    .faq-icon::before, .faq-icon::after {
        content: '';
        position: absolute;
        background-color: #666;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: background-color 0.3s ease, opacity 0.3s ease;
    }

    .faq-icon::before {
        width: 100%;
        height: 1px;
    }

    .faq-icon::after {
        width: 1px;
        height: 100%;
    }

.faq-question:hover .faq-icon::before,
.faq-question:hover .faq-icon::after,
.faq-question.active .faq-icon::before,
.faq-question.active .faq-icon::after {
    background-color: #fff;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

    .faq-question.active .faq-icon::after {
        opacity: 0;
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-inner {
    padding: 0 10px 30px;
    color: #888;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
}

    .faq-inner strong {
        color: #ccc;
        font-weight: 500;
    }

    .faq-inner a {
        color: var(--gold);
        text-decoration: none;
        border-bottom: 1px solid rgba(212,175,55,0.3);
        transition: 0.3s;
    }

        .faq-inner a:hover {
            border-bottom-color: var(--gold);
            color: #fff;
        }

.faq-question.active + .faq-answer {
    max-height: 1000px;
}

@media (max-width: 900px) {
    .help-wrapper {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 20px 0;
    }

    .faq-inner {
        padding: 0 0 25px;
    }
}
