.help-page {
    padding: 3rem 0 4rem;
}

.help-container {
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.help-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.help-header h1 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.help-header p {
    font-size: 1.125rem;
    color: var(--color-subtext);
    margin-bottom: 0;
}

.help-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.help-nav-link {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-700);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.help-nav-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: var(--color-accent-bg);
}

.help-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.help-section-header {
    margin-bottom: 1.25rem;
}

.help-section-header h2 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.help-section-header p {
    font-size: 0.9375rem;
    color: var(--color-subtext);
    margin-bottom: 0;
}

.help-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.help-faq-item[open] {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.help-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
}

.help-faq-question::-webkit-details-marker {
    display: none;
}

.help-faq-chevron {
    flex-shrink: 0;
    color: var(--color-gray-400);
    transition: transform 0.2s ease;
}

.help-faq-item[open] .help-faq-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.help-faq-answer {
    padding: 0 1.25rem 1.25rem;
}

.help-faq-answer p {
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-subtext);
}

.help-contact {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.help-contact h2 {
    font-size: 1.375rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.help-contact p {
    margin-bottom: 1.25rem;
    color: var(--color-subtext);
}

@media (max-width: 768px) {
    .help-page {
        padding: 2rem 0 3rem;
    }

    .help-header h1 {
        font-size: 2rem;
    }

    .help-header p {
        font-size: 1rem;
    }

    .help-nav {
        margin-bottom: 2rem;
    }

    .help-sections {
        gap: 2rem;
    }

    .help-contact {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .help-header h1 {
        font-size: 1.75rem;
    }

    .help-faq-question {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .help-faq-answer {
        padding: 0 1rem 1rem;
    }
}
