.help-content-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 120px 20px 40px 20px;
    min-height: 60vh;
}

.help-content-section h1 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.help-content-section .section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.help-article {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #080808;
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.help-article h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.help-article p,
.help-article li {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.help-article ol {
    padding-left: 25px;
}

.help-article li {
    margin-bottom: 10px;
}

.help-article a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.help-article a:hover {
    color: #33ff33;
    text-decoration: underline;
}

.help-content-section.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s 0.2s ease-out forwards;
}

.help-article.animate-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .help-content-section {
        padding: 100px 15px 30px 15px;
    }

    .help-content-section h1 {
        font-size: 2.2rem;
    }

    .help-content-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .help-article h2 {
        font-size: 1.5rem;
    }
}