    :root {
            --primary-dark: #0a0a0a;
            --text-color: #333;
            --gold-accent: #D4AF37;
            --action-green: #2ecc71;
            --alert-red: #b91c1c;
            --glass-bg: rgba(255, 255, 255, 0.98);
        }

    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: #fdfdfd;
            color: var(--text-color);
            line-height: 1.6;

        }

        h1,
        h2,
        h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-dark);
        }

        a {
            text-decoration: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

    
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .nav-left .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            letter-spacing: 1px;
            font-weight: 700;
            color: #000;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .nav-center {
            display: flex;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
            padding: 15px 0;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }

        .nav-link:hover {
            color: var(--alert-red);
        }

        .arrow-down {
            font-size: 0.6rem;
            opacity: 0.5;
        }

     
        .dropdown {
            position: absolute;
            top: 100%;
            left: -20px;
            width: 220px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            list-style: none;
            border-top: 3px solid var(--alert-red);
            z-index: 2100;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown li a {
            display: block;
            padding: 12px 25px;
            font-size: 0.85rem;
            color: #555;
            text-decoration: none;
            transition: 0.2s;
        }

        .dropdown li a:hover {
            background: #fff5f5;
            color: var(--alert-red);
            padding-left: 30px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .phone-link {
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--alert-red);
            white-space: nowrap;
        }

   
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--primary-dark);
            z-index: 2100;
            user-select: none;
        }

        .mobile-nav {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #ffffff;
            padding: 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top: 1px solid #eee;
            z-index: 1900;
            max-height: 80vh;
            overflow-y: auto;
        }

        .mobile-nav.active {
            display: flex;
            animation: slideDown 0.3s ease-out;
        }

        .mobile-nav a {
            display: block;
            padding: 18px 30px;
            border-bottom: 1px solid #f5f5f5;
            color: #333;
            text-decoration: none;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .mobile-nav .sub-header {
            background: #f9f9f9;
            color: #888;
            font-size: 0.75rem;
            padding: 10px 30px;
            letter-spacing: 2px;
            font-weight: 700;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .text-center {
            text-align: center;
        }

        .bold {
            font-weight: 700;
        }

        .hidden-mobile {
            display: block;
        }

        .hidden-desktop {
            display: none;
        }

        .btn-call-hero {
            background-color: var(--alert-red);
            color: #fff;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
            transition: transform 0.2s;
        }

        .btn-call-hero:hover {
            transform: translateY(-2px);
            background-color: #991b1b;
        }

        .btn-outline {
            border: 2px solid var(--primary-dark);
            color: var(--primary-dark);
            padding: 15px 30px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
            transition: 0.3s;
        }

        .btn-outline:hover {
            background: var(--primary-dark);
            color: #fff;
        }

        .sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #fff;
            border-top: 1px solid #eee;
            padding: 15px;
            display: none;
            justify-content: space-between;
            align-items: center;
            z-index: 2000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .sticky-btn {
            background: var(--alert-red);
            color: white;
            width: 100%;
            text-align: center;
            padding: 15px;
            font-weight: 900;
            font-size: 1.1rem;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .em-hero {
            margin-top: 70px;
            padding: 80px 0;
            background: linear-gradient(to right, #fdfdfd 50%, #f4f4f4 50%);
            display: flex;
            align-items: center;
        }

        .hero-split {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .hero-text {
            flex: 1;
        }

        .hero-img {
            flex: 1;
            position: relative;
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e6fffa;
            color: #047857;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            margin-bottom: 20px;
            border: 1px solid #b7eb8f;
        }

        .pulse {
            width: 10px;
            height: 10px;
            background: var(--action-green);
            border-radius: 50%;
            box-shadow: 0 0 0 rgba(46, 204, 113, 0.4);
            animation: pulse 2s infinite;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-sub {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
        }

        .trust-icons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            opacity: 0.7;
            font-size: 0.8rem;
        }

        .rapid-form-card {
            background: white;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-top: 5px solid var(--alert-red);
        }

        .form-input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Lato';
        }

        .form-btn {
            width: 100%;
            background: var(--primary-dark);
            color: white;
            padding: 15px;
            border: none;
            font-weight: 700;
            cursor: pointer;
        }

        .insurance-strip {
            background: #f0f0f0;
            padding: 15px 0;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 700;
            color: #666;
        }

        .symptoms-section {
            padding: 80px 0;
        }

        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .symptom-box {
            padding: 25px;
            border: 1px solid #eee;
            text-align: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .symptom-box:hover {
            border-color: var(--alert-red);
            background: #fff5f5;
        }

        .symptom-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 10px;
        }

        .map-section {
            padding: 0;
            height: 400px;
            width: 100%;
            position: relative;
        }

        .map-frame {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(100%);
        }

        .map-overlay {
            position: absolute;
            top: 50px;
            left: 50px;
            background: #fff;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            border-left: 4px solid var(--gold-accent);
        }

        .seo-content {
            background: #fff;
            padding: 60px 0;
            border-top: 1px solid #eee;
        }

        .seo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            font-size: 0.9rem;
            color: #666;
        }

        footer {
            background: var(--primary-dark);
            color: #555;
            padding: 80px 20px 40px;
            text-align: center;
        }

        @media (max-width: 1024px) {

            .nav-center,
            .nav-right {
                display: none;
            }

            .hamburger {
                display: block;
            }

            .em-hero {
                background: #fff;
                padding-top: 40px;
            }

            .hero-split {
                flex-direction: column;
                text-align: center;
            }

            .status-badge {
                margin: 0 auto 20px auto;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .btn-call-hero {
                width: 100%;
                justify-content: center;
            }

            .trust-icons {
                justify-content: center;
            }

            .symptoms-grid {
                grid-template-columns: 1fr 1fr;
            }

            .seo-grid {
                grid-template-columns: 1fr;
            }

            .sticky-bar {
                display: flex;
            }

            .hidden-mobile {
                display: none;
            }

            .hidden-desktop {
                display: block;
            }

            .map-overlay {
                position: relative;
                top: 0;
                left: 0;
                width: 100%;
                max-width: none;
                box-shadow: none;
                border-bottom: 1px solid #eee;
                border-left: none;
            }


        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
            }
        }