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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: #f5f7fe;
            color: #1a2a3f;
            line-height: 1.5;
        }

        .wave-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -2;
            background: linear-gradient(145deg, #e0eefc 0%, #f0f5ff 100%);
        }
        
        .wave-bg::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 280px;
            background: linear-gradient(120deg, #d4e2f5, #ffffff);
            border-radius: 100% 20% 70% 30% / 40% 50% 50% 60%;
            opacity: 0.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #1e3a6f;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(30,58,111,0.2);
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0a2b4e;
            letter-spacing: -0.3px;
        }

        .nav-links {
            display: flex;
            gap: 36px;
            align-items: center;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #2c3e66;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #1e6f5c;
        }

        .hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            padding: 48px 0 40px;
        }

        .hero-content {
            flex: 1;
            min-width: 280px;
        }

        .hero-badge {
            background: rgba(30,111,92,0.12);
            color: #1e6f5c;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 24px;
        }

        .hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #0a2b4e;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            color: #1e6f5c;
            background: linear-gradient(135deg, #1e6f5c, #289b7e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-desc {
            font-size: 1.2rem;
            color: #4a5b7a;
            max-width: 500px;
            margin-bottom: 32px;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 32px;
        }

        .stat-block h3 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #0a2b4e;
        }

        .stat-block p {
            font-size: 0.85rem;
            color: #5d6f8f;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .globe-card {
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(12px);
            border-radius: 56px;
            padding: 24px;
            box-shadow: 0 25px 45px -12px rgba(0,0,0,0.15);
            border: 1px solid rgba(255,255,255,0.8);
        }

        .btn-primary-new {
            background: #1e6f5c;
            border: none;
            padding: 14px 38px;
            border-radius: 48px;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 8px 18px rgba(30,111,92,0.25);
        }

        .btn-primary-new:hover {
            background: #0f5546;
            transform: translateY(-2px);
            box-shadow: 0 14px 26px rgba(30,111,92,0.3);
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            margin: 72px 0 48px;
            color: #0a2b4e;
        }

        .features-flex {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
            margin-bottom: 70px;
        }

        .feature-new {
            background: white;
            border-radius: 32px;
            padding: 36px 28px;
            flex: 1;
            min-width: 240px;
            transition: all 0.25s;
            box-shadow: 0 10px 25px -12px rgba(0,0,0,0.08);
            border: 1px solid #eef2fa;
        }

        .feature-new:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 40px -16px rgba(30,111,92,0.2);
            border-color: #cbe5df;
        }

        .feature-icon-new {
            font-size: 2.5rem;
            background: #eef7f4;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            margin-bottom: 24px;
        }

        .feature-new h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: #0f2c47;
        }

        .feature-new p {
            color: #5a6e8a;
            line-height: 1.5;
        }

        .split-cta {
            display: flex;
            flex-wrap: wrap;
            background: #ffffffde;
            border-radius: 48px;
            margin: 48px 0;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
            border: 1px solid #e7edf8;
        }

        .split-left {
            flex: 1;
            padding: 48px 40px;
            background: #fafcff;
        }

        .split-left h3 {
            font-size: 1.9rem;
            margin-bottom: 18px;
            color: #0a2b4e;
        }

        .split-left p {
            color: #446688;
            margin-bottom: 28px;
        }

        .split-right {
            flex: 1;
            background: linear-gradient(130deg, #1e6f5c, #248f76);
            padding: 48px 40px;
            color: white;
        }

        .split-right h3 {
            font-size: 1.9rem;
            margin-bottom: 18px;
        }

        .btn-outline-white {
            background: transparent;
            border: 1px solid white;
            padding: 10px 28px;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: 0.2s;
        }

        .btn-outline-white:hover {
            background: white;
            color: #1e6f5c;
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0 70px;
        }

        .review-card {
            background: white;
            border-radius: 28px;
            padding: 28px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.02);
            border: 1px solid #eef2f0;
        }

        .review-text {
            font-size: 1rem;
            color: #2c3f58;
            margin-bottom: 20px;
            font-style: normal;
            line-height: 1.5;
        }

        .reviewer {
            font-weight: 700;
            color: #1e6f5c;
        }

        .faq-simple {
            background: #ffffffcc;
            border-radius: 40px;
            padding: 40px;
            margin: 60px 0;
            backdrop-filter: blur(4px);
        }

        .faq-item-simple {
            border-bottom: 1px solid #e2ecf5;
            padding: 18px 0;
        }

        .faq-question-simple {
            font-weight: 700;
            color: #1a3857;
            margin-bottom: 8px;
            font-size: 1.05rem;
        }

        .faq-answer-simple {
            color: #647b9b;
        }

        .footer {
            border-top: 1px solid #cfdfef;
            padding: 48px 0 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
            margin-top: 30px;
        }

        .footer-copyright {
            font-size: 0.85rem;
            color: #5b6f8c;
        }

        .footer-links a {
            color: #3e5a7c;
            text-decoration: none;
            margin-left: 32px;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: #1e6f5c;
        }

        @media (max-width: 860px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .navbar {
                flex-direction: column;
                gap: 16px;
            }
            .hero {
                flex-direction: column;
            }
            .split-left, .split-right {
                padding: 32px 24px;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
    