        :root {
            --primary: #C62828;
            --primary-dark: #B71C1C;
            --primary-light: #FFEBEE;
            --accent: #F9A825;
            --accent-dark: #F57F17;
            --accent-light: #FFF8E1;
            --text: #1a1a2e;
            --text-light: #546E7A;
            --bg: #FFFDF7;
            --white: #ffffff;
            --shadow: 0 2px 12px rgba(0,0,0,0.08);
            --shadow-hover: 0 8px 30px rgba(198,40,40,0.15);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
        }
        .slds-promo { display: flex; align-items: center; background: var(--accent-light); border-radius: var(--radius); box-shadow: var(--shadow); margin: 32px auto 24px auto; max-width: 700px; padding: 24px 32px; gap: 28px; }
        .slds-logo { width: 80px; height: 80px; object-fit: contain; border-radius: 16px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.07); }
        .slds-info h3 { margin: 0 0 8px 0; font-size: 1.3rem; color: var(--primary); }
        .slds-info p { margin: 0 0 10px 0; color: var(--text-light); font-size: 1rem; }
        .slds-link { display: inline-block; color: var(--accent-dark); font-weight: 600; text-decoration: none; border-bottom: 2px solid var(--accent); transition: color 0.2s; }
        .slds-link:hover { color: var(--primary); border-bottom: 2px solid var(--primary); }
        @media (max-width: 600px) { .slds-promo { flex-direction: column; padding: 18px 8px; gap: 12px; } .slds-logo { width: 60px; height: 60px; } .slds-info h3 { font-size: 1.1rem; } .slds-info p { font-size: 0.95rem; } }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }

        /* ── Top Bar ── */
        .top-bar {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.9);
            font-size: 0.8rem;
            padding: 7px 24px;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .top-bar-left { flex: 1; min-width: 200px; text-align: center; }
        .top-bar-nav {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-shrink: 0;
        }
        .top-bar-nav a {
            display: inline-block;
            padding: 4px 12px;
            color: var(--primary-dark);
            background: rgba(255,255,255,0.95);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.75rem;
            border-radius: 6px;
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.5);
        }
        .top-bar-nav a:hover {
            background: var(--accent);
            color: var(--white);
            border-color: var(--accent);
        }
        @media (max-width: 700px) {
            .top-bar { justify-content: center; text-align: center; }
            .top-bar-left { text-align: center; }
            .top-bar-nav { order: -1; width: 100%; justify-content: center; }
        }

        /* ── Header ── */
        .header {
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 50%, var(--accent-light) 100%);
            border-bottom: 4px solid;
            border-image: linear-gradient(90deg, var(--primary), var(--accent)) 1;
            padding: 16px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        /* Leader photo blocks */
        .leader-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex-shrink: 0;
        }
        .leader-photo {
            width: 80px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
            object-position: top;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
            border: 2px solid var(--accent);
        }
        .leader-name {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--primary-dark);
            text-align: center;
            line-height: 1.2;
        }
        .leader-title {
            font-size: 0.6rem;
            color: var(--text-light);
            text-align: center;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .header-center {
            flex: 1;
            text-align: center;
            min-width: 200px;
        }
        .header-emblem {
            height: 56px;
            margin-bottom: 4px;
        }
        .header-dept {
            font-size: 0.8rem;
            color: var(--text-light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }
        .header-title {
            font-family: "Poppins", sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-dark);
            line-height: 1.2;
        }
        .header-title span {
            color: var(--accent-dark);
        }
        .header-subtitle {
            font-size: 0.9rem;
            color: var(--primary);
            font-weight: 600;
            margin-top: 2px;
        }

        /* ── Hero ── */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent-dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 48px 24px 40px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(249,168,37,0.12) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero h2 {
            font-family: "Poppins", sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
        }
        .hero p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 28px;
            flex-wrap: wrap;
            position: relative;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat .num {
            font-family: "Poppins", sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
        }
        .hero-stat .label {
            font-size: 0.8rem;
            opacity: 0.85;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ── Section ── */
        .section-title {
            text-align: center;
            padding: 40px 24px 8px;
        }
        .section-title h2 {
            font-family: "Poppins", sans-serif;
            font-size: 1.5rem;
            color: var(--primary-dark);
            font-weight: 700;
        }
        .section-title p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-top: 4px;
        }
        .section-divider {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 12px auto 0;
            border-radius: 2px;
        }

        /* ── District Cards ── */
        .districts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 24px;
            max-width: 1200px;
            margin: 28px auto 0;
            padding: 0 24px 48px;
        }
        .district-card {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            border-top: 4px solid var(--primary);
        }
        .district-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-top-color: var(--accent);
        }
        .card-screenshot {
            width: 100%;
            height: 180px;
            object-fit: cover;
            object-position: top;
            border-bottom: 1px solid #eee;
        }
        .card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-district {
            font-family: "Poppins", sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }
        .card-type {
            font-size: 0.8rem;
            color: var(--white);
            background: var(--accent-dark);
            display: inline-block;
            padding: 2px 10px;
            border-radius: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            width: fit-content;
        }
        .card-provider {
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-provider img {
            height: 32px;
            object-fit: contain;
        }
        .card-provider-info {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.3;
        }
        .card-provider-info strong {
            color: var(--text);
            display: block;
        }
        .card-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--primary);
            margin-top: 12px;
            transition: var(--transition);
        }
        .district-card:hover .card-cta {
            gap: 10px;
            color: var(--accent-dark);
        }

        /* ── About ── */
        .about {
            background: var(--white);
            max-width: 900px;
            margin: 0 auto 48px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 36px;
            border-left: 4px solid var(--accent);
        }
        .about h3 {
            font-family: "Poppins", sans-serif;
            color: var(--primary-dark);
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .about p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 12px;
        }
        .about ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 8px;
            margin-top: 8px;
        }
        .about ul li {
            font-size: 0.9rem;
            color: var(--text);
            padding: 6px 0 6px 24px;
            position: relative;
        }
        .about ul li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            color: var(--accent-dark);
            font-weight: 700;
        }

        /* ── Photo Strip ── */
        .photo-strip {
            display: flex;
            gap: 0;
            overflow: hidden;
            max-height: 200px;
        }
        .photo-strip img {
            flex: 1;
            object-fit: cover;
            min-width: 0;
        }

        /* ── Footer ── */
        .footer {
            background: var(--primary-dark);
            color: rgba(255,255,255,0.85);
            padding: 32px 24px;
            border-top: 4px solid var(--accent);
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .footer-brand img {
            height: 48px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }
        .footer-brand-text {
            font-size: 0.85rem;
            line-height: 1.5;
        }
        .footer-brand-text strong {
            color: var(--white);
            font-size: 0.95rem;
        }
        .footer-brand-text a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-brand-text a:hover {
            color: var(--white);
        }
        .footer-copy {
            font-size: 0.8rem;
            opacity: 0.7;
            text-align: right;
        }

        .footer-social-links {
            display: flex;
            gap: 16px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
        .footer-social-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            opacity: 0.85;
            transition: var(--transition);
        }
        .footer-social-links a:hover {
            opacity: 1;
            color: var(--accent);
        }

        /* ── Responsive ── */

        /* Tablet: ≤ 768px */
        @media (max-width: 768px) {
            /* Top bar wraps */
            .top-bar { font-size: 0.72rem; padding: 6px 12px; line-height: 1.5; }

            /* Header: stack vertically — center first, then leaders side by side */
            .header {
                padding: 12px 16px;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            /* Put center block on top */
            .header-center { order: -1; min-width: unset; width: 100%; }
            /* Leaders row below */
            .leader-block { flex-direction: row; gap: 10px; align-items: flex-start; }
            .leader-photo { width: 56px; height: 70px; }
            .leader-name { font-size: 0.62rem; }
            .leader-title { font-size: 0.56rem; }
            .header-emblem { height: 40px; margin-bottom: 2px; }
            .header-title { font-size: 1.3rem; }
            .header-dept { font-size: 0.68rem; }
            .header-subtitle { font-size: 0.78rem; }

            /* Put both leader blocks in a flex row at the bottom */
            .header { flex-wrap: wrap; flex-direction: row; justify-content: center; }
            .header-center { order: -1; flex-basis: 100%; }

            /* Hero */
            .hero { padding: 28px 16px 24px; }
            .hero h2 { font-size: 1.2rem; }
            .hero p { font-size: 0.88rem; }
            .hero-stats { gap: 20px; margin-top: 20px; }
            .hero-stat .num { font-size: 1.6rem; }
            .hero-stat .label { font-size: 0.72rem; }

            /* Section titles */
            .section-title { padding: 28px 16px 6px; }
            .section-title h2 { font-size: 1.25rem; }

            /* District cards: single column */
            .districts {
                grid-template-columns: 1fr;
                padding: 0 16px 28px;
                gap: 16px;
                margin-top: 16px;
            }

            /* SLDS promo */
            .slds-promo { flex-direction: column; padding: 18px 16px; gap: 14px; margin: 20px 16px; max-width: unset; text-align: center; }
            .slds-logo { width: 64px; height: 64px; }
            .slds-info h3 { font-size: 1.1rem; }
            .slds-info p { font-size: 0.9rem; }

            /* About */
            .about { margin: 0 16px 28px; padding: 20px; }
            .about ul { grid-template-columns: 1fr; }

            /* Footer */
            .footer { padding: 24px 16px; }
            .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
            .footer-copy { text-align: center; }
            .footer-brand { flex-direction: column; align-items: center; gap: 8px; }

            /* Photo strip */
            .photo-strip { max-height: 120px; }
        }

        /* Mobile: ≤ 480px */
        @media (max-width: 480px) {
            /* Top bar */
            .top-bar { font-size: 0.68rem; padding: 5px 10px; }

            /* Header — fully stacked, compact */
            .header { padding: 10px 12px; gap: 8px; }
            .header-center { flex-basis: 100%; order: -1; }
            .header-emblem { height: 34px; }
            .header-title { font-size: 1.05rem; }
            .header-dept { font-size: 0.62rem; }
            .header-subtitle { font-size: 0.72rem; }
            .leader-photo { width: 50px; height: 62px; }
            .leader-name { font-size: 0.58rem; }
            .leader-title { font-size: 0.52rem; }

            /* Hero */
            .hero { padding: 22px 12px 20px; }
            .hero h2 { font-size: 1.05rem; }
            .hero p { font-size: 0.82rem; }
            .hero-stats { gap: 14px; }
            .hero-stat .num { font-size: 1.4rem; }

            /* Districts grid: single column, edge to edge */
            .districts { padding: 0 10px 24px; gap: 12px; }

            /* SLDS promo */
            .slds-promo { padding: 14px 10px; margin: 16px 10px; }

            /* About */
            .about { margin: 0 10px 20px; padding: 16px; }

            /* Floating CTA */
            .floating-cta { padding: 10px 14px; font-size: 0.76rem; bottom: 14px; right: 14px; gap: 6px; }
            .floating-cta svg { width: 15px; height: 15px; }
        }

        /* Very small phones: ≤ 360px */
        @media (max-width: 360px) {
            .header-title { font-size: 0.95rem; }
            .leader-photo { width: 44px; height: 55px; }
            .hero h2 { font-size: 0.95rem; }
            .hero-stats { gap: 10px; }
            .hero-stat .num { font-size: 1.2rem; }
            .floating-cta span { display: none; }
        }
        /* ── Floating CTA Button ── */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(198,40,40,0.35);
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .floating-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(198,40,40,0.45);
            background: linear-gradient(135deg, var(--accent-dark) 0%, var(--primary) 100%);
        }
        .floating-cta svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            flex-shrink: 0;
        }

        /* ── Top bar link ── */
        .top-bar a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        .top-bar a:hover {
            color: var(--white);
            text-decoration: underline;
        }

/* Utilities */
.hidden { display: none !important; }
