.help-page-wrapper {
    padding: 80px 0;
}

.help-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.help-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.help-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.faq-section {
    max-width: 800px;
    margin: 0 auto 64px;
}

.faq-section h2 {
    font-size: 24px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item {
    margin-bottom: 24px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px; /* Approximate max height */
    transition: max-height 0.5s ease-in-out, padding 0.3s ease;
}

.help-contact {
    text-align: center;
    margin-top: 64px;
    padding: 48px;
    background-color: var(--input-bg);
    border-radius: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.help-contact h2 {
    margin-bottom: 16px;
}

.help-contact p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

