:root{--legacy-0e3f6c:#0e3f6c;--legacy-1f2937:#1f2937;--legacy-45b5c7:#45b5c7;--legacy-4b5563:#4b5563;--legacy-9ca3af:#9ca3af;--legacy-e5e7eb:#e5e7eb;--legacy-eeeeee:#eeeeee;--legacy-effbfc:#effbfc;--legacy-f59e0b:#f59e0b}
:root {
            --primary: var(--legacy-45b5c7, #45B5C7);
            --secondary: var(--legacy-0e3f6c, #0E3F6C);
            --accent: var(--legacy-f59e0b, #F59E0B);
            --light-bg: var(--color-surface-alt, #F8F9FA);
            --text-dark: var(--legacy-1f2937, #1F2937);
            --text-muted: var(--legacy-4b5563, #4B5563);
        }</p>
<p>        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            margin: 0;
            color: var(--text-dark);
            line-height: 1.6;
        }</p>
<p>        /* Zip Checker Bar */
        .availability-bar {
            background: var(--secondary);
            color: white;
            padding: 10px 20px;
            text-align: center;
            font-size: 14px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }</p>
<p>        .check-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 5px 15px;
            border-radius:var(--radius-sm, 4px);
            margin-left: 10px;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
        }</p>
<p>        /* Hero Section */
        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 5rem 10%;
            background: linear-gradient(135deg, var(--color-surface-alt, #F3F4F6) 0%, var(--color-background, #FFFFFF) 100%);
            gap: 2rem;
        }</p>
<p>        .hero-text { flex: 1; min-width: 320px; }
        .hero-text h1 { font-size: 3.5rem; color: var(--secondary); margin-bottom: 1.5rem; line-height: 1.1; }
        .hero-text h1 span { color: var(--primary); }
        .hero-text p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }</p>
<p>        .cta-box { display: flex; gap: 1rem; }
        .btn-main { background: var(--primary); color: white; padding: 15px 35px; border-radius:var(--radius-sm, 8px); text-decoration: none; font-weight: bold; }
        .btn-alt { background: var(--secondary); color: white; padding: 15px 35px; border-radius:var(--radius-sm, 8px); text-decoration: none; font-weight: bold; }</p>
<p>        /* Trust Section */
        .trust-bar { padding: 2rem 10%; text-align: center; background: white; border-bottom: 1px solid var(--legacy-eeeeee, #EEE); }
        .trust-grid { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
        .trust-item { font-weight: 700; color: var(--secondary); display: flex; align-items: center; gap: 8px; }</p>
<p>        /* How It Works */
        .steps-section { padding: 5rem 10%; background: var(--light-bg); text-align: center; }
        .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
        .step-card { background: white; padding: 3rem 2rem; border-radius:var(--radius-lg, 15px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .step-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }</p>
<p>        /* NEW: State Directory (Replaces Map) */
        .state-section { padding: 5rem 10%; background: white; }
        .state-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); 
            gap: 12px; 
            margin-top: 3rem;
        }
        .state-link {
            display: flex;
            justify-content: space-between;
            padding: 12px 15px;
            background: var(--color-surface-alt, #F9FAFB);
            border: 1px solid var(--legacy-e5e7eb, #E5E7EB);
            border-radius:var(--radius-sm, 6px);
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            transition: 0.2s;
        }
        .state-link:hover {
            border-color: var(--primary);
            background: var(--legacy-effbfc, #EFFBFC);
            transform: translateY(-2px);
        }
        .state-link span { color: var(--legacy-9ca3af, #9CA3AF); font-size: 0.8rem; }</p>
<p>        /* About/Mission Section */
        .mission { padding: 5rem 10%; background: var(--secondary); color: white; text-align: center; }
        .mission p { max-width: 800px; margin: 0 auto; font-size: 1.2rem; opacity: 0.9; }</p>
<p>        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero { padding: 3rem 5%; text-align: center; }
            .cta-box { justify-content: center; }
        }