        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #0e1f47;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0e1f47 0%, #163172 50%, #1e439d 100%);
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .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 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="white" opacity="0.08"/><circle cx="40" cy="80" r="1" fill="white" opacity="0.12"/></svg>') repeat;
            animation: float 25s infinite linear;
        }
        @keyframes float {
            0% { transform: translateY(0px) translateX(0px); }
            50% { transform: translateY(-20px) translateX(10px); }
            100% { transform: translateY(0px) translateX(0px); }
        }
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 2rem;
        }
        .hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #2756c7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.02em;
        }
        .hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            opacity: 0.95;
            color: #ffffff;
            font-weight: 600;
        }
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 3rem;
            opacity: 0.85;
            color: #e6e6e6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }
        .cta-button {
            background: linear-gradient(135deg, #163172, #2756c7);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(22, 49, 114, 0.3);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(39, 86, 199, 0.5);
            background: linear-gradient(135deg, #1e439d, #2756c7);
        }
        .cta-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(230, 230, 230, 0.3);
            color: white;
        }
        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
        }
        
        /* Features Preview */
        .features-preview {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            opacity: 0.9;
        }
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 16px;
            border: 1px solid rgba(230, 230, 230, 0.2);
            text-align: center;
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }
        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ffffff;
        }
        .feature-card p {
            font-size: 0.95rem;
            opacity: 0.8;
            margin: 0;
            color: #e6e6e6;
        }
        
        /* Stats Section */
        .stats {
            background: #ffffff;
            padding: 4rem 2rem;
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .stat {
            padding: 1.5rem;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #163172;
            display: block;
            margin-bottom: 0.5rem;
        }
        .stat-label {
            font-size: 1.1rem;
            color: #0e1f47;
            font-weight: 500;
        }
        
        /* Problem/Solution Section */
        .problem-solution {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
            color: #0e1f47;
        }
        .comparison {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        .before, .after {
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
        }
        .before {
            background: #fef2f2;
            border: 2px solid #fca5a5;
        }
        .after {
            background: #f0f9ff;
            border: 2px solid #2756c7;
        }
        .before h3 {
            color: #dc2626;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .after h3 {
            color: #163172;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Features Section */
        .features {
            background: #0e1f47;
            color: white;
            padding: 6rem 2rem;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid rgba(230, 230, 230, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        .feature:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }
        .feature h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2756c7;
        }
        
        /* CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #163172, #2756c7);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        .final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .final-cta p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .site-footer {
            background: #0e1f47;
            color: white;
            padding: 3rem 2rem 1rem;
            margin-top: auto;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-brand h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #2756c7;
        }
        
        .footer-brand p {
            color: #e6e6e6;
            font-size: 0.95rem;
        }
        
        .footer-section h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #ffffff;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-section ul li a {
            color: #e6e6e6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #2756c7;
        }
        
        .footer-bottom {
            border-top: 1px solid #163172;
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-bottom p {
            color: #e6e6e6;
            font-size: 0.9rem;
            margin: 0;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .footer-social a {
            color: #e6e6e6;
            text-decoration: none;
            font-size: 1.2rem;
            transition: color 0.3s ease;
        }
        
        .footer-social a:hover {
            color: #2756c7;
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .site-footer {
                padding: 2rem 1rem 1rem;
            }
        }        
        
        @media (max-width: 768px) {
            .comparison {
                grid-template-columns: 1fr;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .features-preview {
                grid-template-columns: 1fr;
            }
        }