
    /* Guide / Article Pages */
    :root {
        --rcs-blue: rgb(3, 16, 169);
        --rcs-red: rgb(255, 0, 0);
        --text-dark: #222222;
        --text-light: #555555;
        --bg-light: #f9f9f9;
        --border-color: #e0e0e0;
    }

    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

    .guide-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-dark);
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .guide-container h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }

    .guide-container h2 {
        font-size: 1.7rem;
        margin-top: 45px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .guide-intro {
        font-size: 1.2rem;
    }

    p { margin-bottom: 1.5rem; }

    .brand-blue { color: var(--rcs-blue); font-style: italic; font-weight: 700; }
    .brand-red { color: var(--rcs-red); font-style: italic; font-weight: 700; }

    /* Quick Answer Box */
    .quick-answer {
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-left: 5px solid var(--rcs-blue);
        border-radius: 8px;
        padding: 1.5rem 2rem;
        margin: 2rem 0;
    }

    .quick-answer h2 {
        margin-top: 0;
        font-size: 1.4rem;
    }

    .quick-answer ul {
        margin: 0;
        padding-left: 1.25rem;
    }

    .quick-answer li {
        margin-bottom: 0.75rem;
    }

    /* Comparison Table */
    .table-scroll {
        overflow-x: auto;
        margin: 1.5rem 0;
    }

    .compare-table {
        width: 100%;
        border-collapse: collapse;
        background: #ffffff;
        font-size: 1rem;
        min-width: 640px;
    }

    .compare-table th,
    .compare-table td {
        border: 1px solid var(--border-color);
        padding: 12px 14px;
        text-align: left;
        vertical-align: top;
    }

    .compare-table thead th {
        background: var(--bg-light);
        font-size: 1.1rem;
    }

    .compare-table td:first-child {
        font-weight: 600;
        background: var(--bg-light);
        white-space: nowrap;
    }

    /* Decision Checklist */
    .decision-checklist {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }

    .decision-checklist li {
        position: relative;
        padding: 0.6rem 0 0.6rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    .decision-checklist li::before {
        content: '\2713';
        position: absolute;
        left: 0;
        color: var(--rcs-red);
        font-weight: 700;
    }

    /* Call To Action */
    .guide-cta {
        text-align: center;
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 2.5rem 1.5rem;
        margin-top: 50px;
    }

    .guide-cta h2 {
        margin-top: 0;
    }

    .guide-cta p {
        max-width: 700px;
        margin: 0 auto 1.5rem auto;
    }

    .btn {
        display: inline-block;
        padding: 14px 28px;
        font-size: 1.1rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--rcs-blue);
        color: #ffffff;
    }

    .btn-primary:hover {
        background-color: #020b75;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(3, 16, 169, 0.3);
    }

    /* Mobile */
    @media (max-width: 768px) {
        .guide-container {
            padding: 20px 15px;
        }

        .guide-container h1 {
            font-size: 1.7rem;
        }

        .guide-container h2 {
            font-size: 1.4rem;
            margin-top: 35px;
        }

        .quick-answer {
            padding: 1.25rem 1.25rem;
        }

        .btn {
            width: 100%;
            white-space: normal;
        }
    }
