/* ======================
   HELP PAGE ONLY
====================== */

/* HERO */
.hero-section {
    margin-bottom: 3rem;
}

.hero-content {
    align-items: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    color: #555;
}

/* HELP CONTENT WRAPPER */
.help-content {
    max-width: 900px;
    margin: 0 auto 4rem;
}

/* HELP SECTIONS */
.help-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.help-section h2 {
    color: #4361ee;
    margin-bottom: 1rem;
}

.help-section p {
    color: #555;
    line-height: 1.6;
}

/* FEATURES */
.feature-grid {
    margin-top: 1.5rem;
}

.feature-card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* STEPS */
.step-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: start;
    margin-top: 1rem;
}

.step-content {
    color: #555;
}

.step-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.step-list li {
    margin-bottom: 0.5rem;
}

/* STEP IMAGES */
.step-image {
    width: 180px;
    border-radius: 8px;
}

/* TIPS */
.tip-box {
    background: #e6f3ff;
    border-left: 4px solid #4361ee;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-style: italic;
}

/* QUOTE SECTION */
blockquote {
    color: #2b2d42;
}

/* MOBILE */
@media (max-width: 768px) {

    .step-container {
        grid-template-columns: 1fr;
    }

    .step-image {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
    }
}
