.hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
    padding: 140px 20px 100px;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
}

.hero p {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Help Section */
.help-section {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin: -60px auto 100px;
    max-width: 1000px;
}

.help-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h5 {
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
}

.faq-item p {
    color: var(--text-light);
    margin-top: 8px;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Contact Help */
.contact-help {
    text-align: center;
    margin-top: 60px;
}

.contact-help h5 {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-help a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-help a:hover {
    text-decoration: underline;
}