
        :root {
            --background: #ffffff;
            --foreground: #173345;
            --primary: #173345;
            --primary-foreground: #ffffff;
            --secondary: #2d5a7b;
            --secondary-foreground: #ffffff;
            --muted: #f8f9fa;
            --muted-foreground: #6c757d;
            --border: #e9ecef;
            --card: #ffffff;
            --card-foreground: #173345;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background-color: var(--primary);
            color: var(--primary-foreground);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: #2d5a7b;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(23, 51, 69, 0.3);
        }

        .btn-lg {
            padding: 1.5rem 2.5rem;
            font-size: 1.125rem;
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        .card {
            background-color: var(--card);
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }

        .header {
            border-bottom: 1px solid var(--border);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 50;
        }

        .header-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 0;
        }

        .header-logo img {
            height: 40px;
            width: auto;
        }

        .hero {
            padding: 6rem 1rem;
            background: linear-gradient(135deg, #173345 0%, #2d5a7b 50%, #173345 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons)"/></svg>');
            opacity: 0.3;
        }

        .hero::after {
            display: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-image {
            display: none;
        }

        .hero-image::before {
            display: none;
        }

        .hero-image-text {
            display: none;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .hero .highlight {
            color: white;
            display: block;
        }

        .hero p {
            font-size: 1.25rem;
            color: white;
            margin-bottom: 3rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .badge::before {
            content: '🛡️';
            font-size: 1.2rem;
        }

        .badge:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .section {
            padding: 4rem 1rem;
            position: relative;
            background: #f8fafc;
        }

        .section:not(.stats-section) {
            background: #f8fafc;
            position: relative;
        }

        .section:not(.stats-section)::before {
            display: none;
        }

        .section:not(.stats-section) .container {
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 3rem;
        }

        .grid-3 {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .grid-3::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #173345, #2d5a7b, #173345);
            transform: translateX(-50%);
        }

        .step-card {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(23, 51, 69, 0.1);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            max-width: 700px;
            margin: 0 auto;
        }

        .step-card:nth-child(even) {
            flex-direction: row-reverse;
            margin-left: auto;
        }

        .step-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(23, 51, 69, 0.15);
        }

        .step-visual {
            display: none;
        }

        .step-icon {
            display: none;
        }

        .step-number {
            width: 5rem;
            height: 5rem;
            background: linear-gradient(135deg, #173345, #2d5a7b);
            color: white;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            line-height: 1;
            transition: all 0.3s ease;
            position: relative;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            box-shadow: 0 8px 25px rgba(23, 51, 69, 0.3);
            flex-shrink: 0;
        }

        .step-card:hover .step-number {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(23, 51, 69, 0.4);
        }



        .step-card {
            text-align: center;
            transition: all 0.3s ease;
            padding: 2rem 1rem;
            position: relative;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #173345;
            line-height: 1.2;
        }

        .step-description {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
            max-width: none;
            margin: 0;
        }

        .step-arrow {
            display: none;
        }

        .stats-section {
            background: white;
            position: relative;
            overflow: hidden;
            padding: 4rem 1rem;
        }

        .stats-section .container {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .stats-content {
            flex: 0 0 30%;
            text-align: left;
            padding-top: 1rem;
        }

        .stats-cards {
            flex: 1;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            position: relative;
            max-width: 100%;
        }

        .grid-2::after {
            display: none;
        }

        .stat-card {
            text-align: center;
            padding: 3rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            background: linear-gradient(135deg, #f8fafc, #e2e8f0);
            border-radius: 1.5rem;
            border: 2px solid transparent;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            border-color: #173345;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
        }

        .stat-number {
            font-size: 5rem;
            font-weight: 900;
            color: #173345;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
            display: block;
            text-shadow: 2px 2px 4px rgba(23, 51, 69, 0.1);
            position: relative;
        }

        .stat-number::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #173345, #2d5a7b);
            border-radius: 2px;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.1);
        }

        .stat-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #374151;
            line-height: 1.3;
        }

        .stat-icon {
            display: none;
        }

        .stat-card:hover .stat-icon {
            display: none;
        }

        .stats-cta {
            text-align: center;
            margin-top: 3rem;
        }

                   .stats-cta .btn {
              background-color: #173345;
              border-color: #173345;
              color: white;
              padding: 1rem 2rem;
              border-radius: 0.5rem;
              font-weight: 600;
              transition: all 0.3s ease;
          }

          .stats-cta .btn:hover {
              background-color: #2d5a7b;
              border-color: #2d5a7b;
              transform: translateY(-2px);
          }

        .form-section {
            background: linear-gradient(135deg, rgba(23, 51, 69, 0.05), rgba(45, 90, 123, 0.05));
        }

        .zip-comparison-section {
            background: #173345;
            padding: 3rem 1rem;
            text-align: center;
        }

        .zip-comparison-title {
            color: white;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .zip-comparison-form {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .zip-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            background: white;
            color: #173345;
            max-width: 200px;
        }

        .zip-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        }

        .zip-submit-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: #2d5a7b;
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            text-decoration: none;
        }

        .zip-submit-btn:hover {
            background: #1e3a5a;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .form-card {
            max-width: 42rem;
            margin: 0 auto;
        }

        .form-content {
            padding: 2.5rem;
        }

        .form-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
        }

        .form-subtitle {
            color: var(--muted-foreground);
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            font-size: 1rem;
            background-color: var(--background);
            color: var(--foreground);
        }

        .select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .footer {
            background: linear-gradient(135deg, #173345 0%, #2d5a7b 100%);
            color: white;
            padding: 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="hexagons-footer" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30 0 L60 15 L60 45 L30 60 L0 45 L0 15 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagons-footer)"/></svg>');
            opacity: 0.3;
        }

        .footer .container {
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .footer-logo img {
            height: 32px;
            width: auto;
        }
        
        .footer-links {
            margin: 1rem 0;
            display: flex;
            justify-content: center;
            gap: 0.25rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            padding: 0.25rem 0.5rem;
            border-radius: 0.5rem;
            position: relative;
        }
        
        .footer-links a:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

                 .footer-text {
             color: #9ca3af;
             font-size: 0.875rem;
         }

         .footer-disclaimer {
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
            line-height: 1.6;
            max-width: 900px;
            margin: 1rem auto 1rem auto;
            text-align: left;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .stat-number {
                font-size: 3.5rem;
            }
            
            .stats-section .container {
                flex-direction: column;
                gap: 2rem;
            }

            .stats-content {
                text-align: center;
            }

            .grid-2 {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .grid-3 {
                gap: 2rem;
            }

            .step-card {
                flex-direction: column !important;
                text-align: center;
                padding: 1.5rem;
                max-width: 100%;
            }

            .step-number {
                width: 4rem;
                height: 4rem;
                font-size: 1.25rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
            
            .section-subtitle {
                margin: 0;
            }
            
            .stat-card {
                padding: 2rem 1rem;
            }

            .grid-3::before {
                display: none;
            }

            .zip-comparison-form {
                flex-direction: column;
                gap: 1rem;
            }

            .zip-input {
                max-width: 100%;
            }

            .zip-comparison-title {
                font-size: 1.5rem;
            }
        }

        /* Legal Pages Specific Styles */
        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0rem 1rem;
        }

        .legal-header {
            border-bottom: 1px solid var(--border);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            margin-bottom: 3rem;
        }

        .legal-header-logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .legal-header-logo img {
            height: 40px;
            width: auto;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--foreground);
        }

        .page-subtitle {
            text-align: center;
            color: var(--muted-foreground);
            margin-bottom: 3rem;
            font-size: 1.125rem;
        }

        .content-section {
            margin-bottom: 2.5rem;
        }

        .content-section h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--foreground);
            line-height: 1.2;
        }

        .content-section p, .content-section ul {
            margin-bottom: 1rem;
            color: var(--muted-foreground);
        }

        .content-section ul {
            padding-left: 1.5rem;
        }

        .content-section li {
            margin-bottom: 0.5rem;
        }

        .content-section strong {
            color: var(--foreground);
        }

        .content-section a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .content-section a:hover {
            color: #2d5a7b;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background-color: var(--primary);
            color: var(--primary-foreground);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .back-link:hover {
            background-color: #2d5a7b;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(23, 51, 69, 0.3);
        }

        .footer-logo img {
            height: 32px;
            width: auto;
        }

        /* Legal Pages Mobile Styles */
        @media (max-width: 768px) {
            .legal-container {
                padding: 0.75rem;
                max-width: 95%;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .content-section {
                margin-bottom: 2rem;
            }
        }
   