﻿/* ================================
   HELP PAGE – GLOBAL LAYOUT
================================ */

.help-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 22px;
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.75;
    color: #222;
    font-size: 1.05rem;
}

    /* ================================
   HEADINGS WITH ICONS
================================ */

    .help-container h1 {
        font-size: 2.2rem;
        margin-bottom: 18px;
        color: #163f73;
        font-weight: 700;
        border-bottom: 3px solid #dbe7f7;
        padding-bottom: 10px;
        position: relative;
        padding-left: 42px; /* space for icon */
    }

        .help-container h1::before {
            content: "📘"; /* main help icon */
            position: absolute;
            left: 0;
            top: 2px;
            font-size: 1.9rem;
        }

    .help-container h2 {
        font-size: 1.55rem;
        margin-top: 32px;
        margin-bottom: 12px;
        color: #1f1f1f;
        font-weight: 650;
        border-left: 5px solid #163f73;
        padding-left: 12px;
        position: relative;
        padding-left: 40px; /* space for icon */
    }

        .help-container h2::before {
            content: "🔹"; /* section icon */
            position: absolute;
            left: 10px;
            top: 0;
            font-size: 1.3rem;
            color: #163f73;
        }

    /* ================================
   PARAGRAPHS & TEXT
================================ */

    .help-container p {
        margin-bottom: 18px;
        font-size: 1.05rem;
        color: #222;
    }

    .help-container ul,
    .help-container ol {
        margin: 12px 0 22px 28px;
    }

    .help-container li {
        margin-bottom: 8px;
        font-size: 1.03rem;
    }

/* ================================
   CALLOUT BOXES
================================ */

.help-callout {
    background: #f0f6ff;
    border-left: 5px solid #163f73;
    padding: 16px 20px;
    border-radius: 5px;
    margin: 25px 0;
    font-size: 1rem;
    color: #1f1f1f;
    position: relative;
    padding-left: 55px; /* space for icon */
}

    .help-callout::before {
        content: "💡"; /* tip icon */
        position: absolute;
        left: 18px;
        top: 14px;
        font-size: 1.4rem;
    }

/* ================================
   RELATED TOPICS LIST
================================ */

.help-list {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

    .help-list li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .help-list li::before {
            content: "➡️";
            margin-right: 8px;
            font-size: 1rem;
        }

    .help-list a {
        color: #163f73;
        text-decoration: none;
        font-weight: 650;
        font-size: 1.05rem;
    }

        .help-list a:hover {
            text-decoration: underline;
        }

/* ================================
   CODE BLOCKS
================================ */

.help-code {
    background: #efefef;
    padding: 12px 14px;
    border-radius: 5px;
    font-family: Consolas, monospace;
    font-size: 0.95rem;
    margin: 18px 0;
    white-space: pre-wrap;
    color: #111;
}
