.help-center-section {
    background: var(--bg-white);
    padding: 4rem 0 6rem;
}

.help-center-content {
    max-width: 800px;
    margin: 0 auto;
}

.help-center-content h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--bg-light-gray);
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-normal);
    line-height: 1.7;
}

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

.faq-answer ul {
    margin-left: 3rem;
}

.contact-support {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--bg-light-gray);
    border-radius: 8px;
}

.contact-support h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-support p {
    color: var(--text-normal);
    margin-bottom: 1.5rem;
}

.contact-support a {
    font-weight: 600;
    color: var(--primary-blue);
}