
        /* ===================================================
           COLOR SYSTEM
           Change these variables to swap brand palettes.
           Defaults below are eXp-style blue and orange.
        =================================================== */
        :root {
            /* Brand base colors */
            --brand-primary: #0054A6;
            --brand-primary-light: #E6F0FB;
            --brand-primary-dark: #003E7C;

            --brand-accent: #F7941E;
            --brand-accent-dark: #C46D0E;

            /* Neutral system */
            --bg-page: #F4F5F7;
            --bg-section: #FFFFFF;
            --bg-alt: #F9FAFB;

            --text-main: #111827;
            --text-muted: #6B7280;
            --border-soft: #E5E7EB;

            /* Semantic tokens */
            --accent: var(--brand-primary);
            --accent-soft: var(--brand-primary-light);
            --accent-dark: var(--brand-primary-dark);

            --highlight: var(--brand-accent);
            --highlight-dark: var(--brand-accent-dark);

            --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.10);
            --max-width: 1120px;
            --radius-lg: 18px;
            --radius-xl: 28px;

             /* Extra tokens used by blog/article styles */
            --radius-md: 12px;
            --bg-hover: #F3F4F6;
            --border-hover: #D1D5DB;
            --text: var(--text-main);
        }



        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: var(--bg-page);
            color: var(--text-main);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        main {
            flex: 1;
        }

        /* ===================================================
           NAVBAR
        =================================================== */
        header {
            position: sticky;
            top: 0;
            z-index: 40;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(229,231,235,0.9);
        }

        .nav {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0.8rem 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }

        /* .nav-logo-mark {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--accent), var(--highlight));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.85rem;
        } */

        .nav-logo-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: auto; /* flexible for different logo widths */
            height: 28px; /* matches your navbar height */
        }

        .nav-logo-mark img {
            height: 100%;     /* full height inside the box */
            width: auto;      /* keep correct aspect ratio */
            display: block;
            object-fit: contain;
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
        }

        .nav-brand-main {
            font-weight: 700;
            font-size: 0.98rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .nav-brand-sub {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-links a {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .nav-links a:hover {
            color: var(--text-main);
        }

        .nav-cta {
            padding: 0.55rem 1.15rem;
            border-radius: 999px;
            border: 1px solid var(--accent);
            background: var(--accent);
            color: white;
            font-size: 0.88rem;
            font-weight: 600;
            box-shadow: 0 10px 28px rgba(0,84,166,0.26);
        }

        .nav-cta:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 20px;
            height: 2px;
            background: var(--text-main);
        }

        /* ===================================================
           SECTION BASICS
        =================================================== */
        section {
            padding: 3.2rem 1.25rem;
        }

        .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: var(--accent-dark);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 1.9rem;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            color: var(--text-muted);
            max-width: 36rem;
            margin-bottom: 1.8rem;
            font-size: 0.98rem;
        }

        /* ===================================================
           HERO (StoryBrand-style rounded hero)
        =================================================== */
        .hero {
            padding: 2.6rem 1.25rem 2.4rem;
        }

        .hero-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .hero-frame {
            position: relative;
            /* border-radius: var(--radius-xl); rounds the corners */
            border-radius: 0;
            overflow: hidden;
            background-color: #111827;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(15,23,42,0.35);
            min-height: 320px;
            display: flex;
            align-items: stretch;
            justify-content: center;
            padding: 0;
            width: 100%; /* added to make bckg full width */
            max-width: none; /* added to make bckg full width */
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            width: 100vw;

        }

        /* Background image placeholder.
           Replace PATH-TO-YOUR-HERO-IMAGE with a real file, e.g. /images/midwest-home-hero.jpg
        */
        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url("PATH-TO-YOUR-HERO-IMAGE.jpg");
            background-size: cover;
            background-position: center;
            filter: blur(1px);
            transform: scale(1.03);
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top left, rgba(0,84,166,0.45), transparent 50%), 
                        linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.65), rgba(0,0,0,0.75));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            /* max-width: 540px; */
            max-width: 680px; /* or even 720px */
            padding: 2.8rem 2.4rem;
            color: #F9FAFB;
            
        }

        .hero-kicker {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            color: #E5E7EB;
            font-weight: 600;
            margin-bottom: 0.9rem;
            text-align: center;
        }

        .hero-title {
            font-size: clamp(2.5rem, 3vw + 1.6rem, 3rem);
            line-height: 1.1;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
            text-align: center;
        }

        .hero-title span.highlight {
            color: var(--highlight);
            display: inline-block;
            margin-top: 0.6em;
        }

        .hero-subtitle {
            font-size: 1rem;
            color: #E5E7EB;
            max-width: 38rem;
            margin-bottom: 1.6rem;
            text-align: center;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 0.85rem;
            margin-bottom: 1.4rem;
            justify-content: center; /* NEW center buttons */
        }

        .btn-primary {
            padding: 0.95rem 1.7rem;
            border-radius: 999px;
            background: var(--highlight);
            color: #111827;
            border: 1px solid var(--highlight);
            font-weight: 600;
            font-size: 0.96rem;
            box-shadow: 0 16px 36px rgba(0,0,0,0.35);
        }

        .btn-primary:hover {
            background: var(--highlight-dark);
            border-color: var(--highlight-dark);
            color: #111827;
        }

        .btn-secondary {
            padding: 0.95rem 1.7rem;
            border-radius: 999px;
            border: 1px solid #E5E7EB;
            background: transparent;
            color: #F9FAFB;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .btn-secondary:hover {
            background: rgba(249,250,251,0.08);
        }

        .hero-note {
            font-size: 0.86rem;
            color: #D1D5DB;
            text-align: center;

        }

        /* Hero bottom action strip (like StoryBrand buttons) */
        /* .hero-actions-bar {
            margin-top: 1.1rem;
            display: grid;
            grid-template-columns: repeat(3,minmax(0,1fr));
            gap: 0.9rem;
        } */

       .hero-actions-bar {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.4rem;
        }

        /* .hero-action {
            background: #9c9494ff;
            border-radius: 999px;
            padding: 0.8rem 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            font-size: 0.86rem;
            border: 1px solid var(--border-soft);
            box-shadow: 0 8px 18px rgba(15,23,42,0.08);
            cursor: pointer;
        } */


        .hero-action {
            background: none;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            color: #E5E7EB;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--accent);
            
        }

        .hero-action span.icon {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            border: 1px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #E5E7EB;
        }

        .hero-action:hover {
            color: var(--accent);
            background: var(--bg-alt);
        }

        /* Scroll cue below hero */
        .scroll-cue-wrapper {
            margin-top: 1.2rem;
            display: flex;
            justify-content: center;
        }

        .scroll-cue {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.84rem;
            color: var(--text-muted);
            cursor: pointer;
        }

        .scroll-cue span.icon {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            border: 1px solid var(--border-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
        }

        /* ===================================================
           VALUE SECTION ("How I help")
        =================================================== */
        #value {
            background: var(--bg-section);
        }

        .value-grid {
            display: grid;
            grid-template-columns: repeat(2,minmax(0,1fr));
            gap: 1.5rem 2rem;
        }

        .value-item {
            padding: 1.35rem 1.4rem 1.2rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-soft);
            background: var(--bg-alt);
        }

        .value-item h3 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }

        .value-item p {
            font-size: 0.93rem;
            color: var(--text-muted);
        }

        /* ===================================================
           PROBLEM / STAKES
        =================================================== */
        #problem {
            background: #111827;
            color: #E5E7EB;
        }

        #problem .section-label {
            color: #93C5FD;
        }

        #problem .section-title {
            color: #F9FAFB;
        }

        #problem .section-subtitle {
            color: #CBD5F5;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
            gap: 2.5rem;
        }

        .problem-block h3 {
            font-size: 1.08rem;
            margin-bottom: 0.4rem;
        }

        .problem-block p {
            font-size: 0.95rem;
            color: #E5E7EB;
        }

        .problem-list {
            list-style: disc;
            margin-left: 1.2rem;
            margin-top: 0.6rem;
            color: #E5E7EB;
            font-size: 0.93rem;
        }

        .problem-list li + li {
            margin-top: 0.3rem;
        }

        /* ===================================================
           PLAN
        =================================================== */
        #plan {
            background: var(--bg-section);
        }

        .plan-steps {
            display: grid;
            grid-template-columns: repeat(3,minmax(0,1fr));
            gap: 1.5rem;
        }

        .plan-step {
            padding: 1.6rem 1.4rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-soft);
            background: var(--bg-alt);
        }

        .plan-step-number {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent-soft);
            color: var(--accent-dark);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 0.7rem;
        }

        .plan-step h3 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }

        .plan-step p {
            font-size: 0.93rem;
            color: var(--text-muted);
        }

        /* ===================================================
           GUIDE
        =================================================== */
        #guide {
            background: linear-gradient(135deg,#F0F9FF,#ECFEFF);
        }

        .guide-grid {
            display: grid;
            grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
            gap: 2.4rem;
            align-items: flex-start;
        }

        .guide-grid p {
            font-size: 0.96rem;
        }

        .guide-card {
            padding: 1.5rem 1.45rem 1.3rem;
            border-radius: var(--radius-xl);
            background: #FFFFFF;
            border: 1px solid rgba(15,23,42,0.06);
            box-shadow: var(--shadow-soft);
        }

        .guide-card h3 {
            font-size: 1.02rem;
            margin-bottom: 0.4rem;
        }

        .guide-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
        }

        .guide-card + .guide-card {
            margin-top: 0.85rem;
        }

        /* ===================================================
           SUCCESS
        =================================================== */
        #success {
            background: var(--bg-section);
        }

        .success-grid {
            display: grid;
            grid-template-columns: repeat(2,minmax(0,1fr));
            gap: 1.6rem;
        }

        .success-list {
            list-style: none;
            display: grid;
            gap: 0.8rem;
            margin-top: 0.5rem;
        }

        .success-list li {
            padding: 0.95rem 1rem;
            border-radius: 0.9rem;
            background: var(--bg-alt);
            border: 1px solid var(--border-soft);
            font-size: 0.92rem;
        }

        .success-list strong {
            font-weight: 600;
        }

        /* ===================================================
           RESOURCES (blog + video cards)
        =================================================== */
        #resources {
            background: var(--bg-section);
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(3,minmax(0,1fr));
            gap: 1.4rem;
        }

        .resource-card {
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-soft);
            background: var(--bg-alt);
            padding: 1.2rem 1.3rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .resource-tag {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.16em;
            font-weight: 600;
            color: var(--accent-dark);
        }

        .resource-title {
            font-size: 0.98rem;
            font-weight: 600;
        }

        .resource-desc {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        .resource-link {
            margin-top: 0.4rem;
            font-size: 0.86rem;
            font-weight: 500;
            color: var(--accent);
        }

        .resource-link:hover {
            text-decoration: underline;
        }

        /* ===================================================
           CTA BANNER
        =================================================== */
        #cta-banner {
            background: #0B1220;
            color: #E5E7EB;
            padding: 2.8rem 1.25rem 3.1rem;
        }

        .cta-banner-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            text-align: center;
        }

        .cta-banner-inner h2 {
            font-size: 1.9rem;
            margin-bottom: 0.5rem;
        }

        .cta-banner-inner p {
            color: #CBD5F5;
            font-size: 0.95rem;
            margin-bottom: 1.7rem;
        }

        .cta-banner-inner .hero-ctas {
            justify-content: center;
        }

        /* ===================================================
           CONTACT / GUIDE
        =================================================== */
        #contact,
        #seller-guide {
            scroll-margin-top: 80px;
        }

        #contact {
            background: var(--bg-section);
        }

        .contact-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
            gap: 2rem;
        }

        .contact-box {
            padding: 1.75rem 1.6rem;
            border-radius: var(--radius-xl);
            background: var(--bg-alt);
            border: 1px solid var(--border-soft);
        }

        .contact-box form {
            display: grid;
            gap: 0.9rem;
            margin-top: 1rem;
        }

        .contact-box label {
            font-size: 0.88rem;
            font-weight: 500;
        }

        .contact-box input,
        .contact-box textarea {
            width: 100%;
            padding: 0.65rem 0.75rem;
            border-radius: 0.55rem;
            border: 1px solid #D1D5DB;
            font-size: 0.94rem;
        }

        .contact-box textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-box button {
            margin-top: 0.6rem;
        }

        .guide-download-box {
            padding: 1.75rem 1.6rem;
            border-radius: var(--radius-xl);
            background: #FEFCE8;
            border: 1px solid #FACC15;
        }

        .guide-download-box p {
            font-size: 0.93rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        /* ===================================================
           FOOTER
        =================================================== */
        footer {
            border-top: 1px solid var(--border-soft);
            background: #F9FAFB;
            padding: 1.6rem 1.25rem;
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .footer-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ===================================================
           RESPONSIVE
        =================================================== */
        @media (max-width: 960px) {
            .hero-frame {
                min-height: 360px;
            }

            .hero-content {
                padding: 2.4rem 1.9rem;
            }

            .hero-actions-bar {
                grid-template-columns: 1fr;
            }

            .problem-grid,
            .guide-grid,
            .success-grid,
            .contact-layout {
                grid-template-columns: minmax(0,1fr);
            }
        }

        @media (max-width: 720px) {
            .nav-links {
                position: absolute;
                inset: 56px 1rem auto;
                background: #FFFFFF;
                border-radius: 0.9rem;
                padding: 0.75rem 0.85rem;
                box-shadow: var(--shadow-soft);
                flex-direction: column;
                align-items: flex-start;
                gap: 0.75rem;
                display: none;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-cta {
                width: 100%;
                text-align: center;
            }

            .nav-toggle {
                display: flex;
            }

            .hero {
                padding-top: 2.2rem;
            }

            .hero-content {
                padding: 2.2rem 1.6rem;
            }

            .value-grid,
            .plan-steps,
            .resources-grid {
                grid-template-columns: minmax(0,1fr);
            }
        }

        /* Full-width category banner, edge-to-edge, no rounded corners */
        .category-banner {
            width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            margin-bottom: 2rem;
        }

        .category-banner img {
            display: block;
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 0;
        }

        .category-article-card--with-thumb {
            display: flex;
            flex-direction: column;
            border: 1px solid #e5e7eb;
            border-radius: 6px;
            overflow: hidden;
            background: #fff;
            text-decoration: none;
            color: inherit;
            transition: box-shadow 0.2s ease;
        }

        .category-article-card--with-thumb:hover {
            box-shadow: 0 4px 14px rgba(0,0,0,0.12);
        }

        .category-card-thumb-wrap {
            width: 100%;
            height: 160px;
            overflow: hidden;
            background: #f2f2f2;
        }

        .category-card-thumb {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .category-card-text {
            padding: 14px 16px;
        }

        /** optional style boost - If you want tighter, more modern cards: 
        .category-card-thumb-wrap {
            height: 180px;
            border-bottom: 1px solid #e5e7eb;
        }

        .article-card-title {
            font-weight: 600;
            margin-bottom: 6px;
        }

        .article-card-excerpt {
            color: #555;
            font-size: 14px;
            margin-bottom: 8px;
        }**/
        /* AUTO-RESPONSIVE GRID */
        .category-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: 1fr;
        }



    /* ARTICLE + CATEGORY CARDS */
    .category-card {
        display: block;
        padding: 0;
        text-decoration: none;
        color: inherit;
    }

    .category-card-title {
        font-size: 20px;
        margin: 12px 0 6px 0;
        font-weight: 600;
    }

    .category-card-excerpt {
        color: #555;
        margin-bottom: 8px;
    }

    /* 16:9 THUMBNAIL */
    .thumb-16x9 {
        width: 100%;
        aspect-ratio: 16/9;
        background: #eee;
        overflow: hidden;
    }

    .thumb-16x9 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .category-container {
        max-width: 1120px;
        margin: 0 auto;
        padding: 3rem 1.25rem;
    }

    .tag-group-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .tag-card {
        display: block;
        padding: 1.2rem 1.4rem;
        background: #fff;
        border-radius: 12px;
        border: 1px solid #e1e4e8;
        text-decoration: none;
        color: #111;
        transition: 0.18s ease-in-out;
    }

    .tag-card:hover {
        border-color: #0077ff;
        box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    }

    .tag-count {
        color: #666;
        font-size: 0.875rem;
        margin-top: 0.35rem;
    }

    .admin-success {
        padding: 10px 14px;
        background: #e6ffed;
        border: 1px solid #4caf50;
        color: #155724;
        margin-bottom: 15px;
        border-radius: 6px;
        font-weight: 600;
    }

    /* ============================================================
   TAG-RELATED HYBRID BLOCK
   ============================================================ */

    .tag-related-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 20px;
    }

    .tag-related-item {
        display: flex;
        gap: 20px;
        padding: 15px;
        background: #fafafa;
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        text-decoration: none;
        color: inherit;
        transition: background 0.2s, border-color 0.2s;
    }

    .tag-related-item:hover {
        background: #fff;
        border-color: #d0d0d0;
    }

    .tag-related-thumb img {
        width: 140px;
        height: 90px;
        object-fit: cover;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .tag-related-text h3 {
        margin: 0 0 6px 0;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .tag-related-text p {
        margin: 0 0 8px 0;
        color: #555;
        line-height: 1.4;
    }

    .tag-related-readmore {
        font-weight: 600;
        color: #0066cc;
    }


   /* ===============================================
   TAG GROUP PAGE
   =============================================== */

    .tag-group-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
        margin-top: 20px;
    }

    .tag-group-card {
        background: #fafafa;
        border: 1px solid #e1e1e1;
        padding: 18px;
        border-radius: 12px;
        text-decoration: none;
        color: inherit;
        transition: background 0.2s, border-color 0.2s;
    }

    .tag-group-card:hover {
        background: #fff;
        border-color: #d0d0d0;
    }

    .tag-group-card-title {
        margin: 0 0 10px 0;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .tag-group-card-count {
        margin: 0 0 12px 0;
        color: #555;
    }

    .tag-group-card-link {
        font-weight: 600;
        color: #0066cc;
    }



    @media (max-width: 640px) {
        .hero-title {
            font-size: 2.1rem;
        }

        .section-title {
            font-size: 1.6rem;
        }
    }

    @media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1200px) {
        .category-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    