* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fc;
            color: #1a1a2e;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav {
            background: #ffffff;
            border-bottom: 1px solid #eef0f5;
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a1a2e;
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #2d3a4a;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
            padding: 4px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #4a90d9;
            border-bottom-color: #4a90d9;
        }
        h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 40px 0 20px;
            text-align: center;
            color: #0b1a2e;
            letter-spacing: -0.3px;
        }
        .hero {
            background: linear-gradient(145deg, #ffffff, #f4f6fc);
            border-radius: 24px;
            padding: 50px 30px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid #eaedf4;
            box-shadow: 0 8px 24px rgba(0,0,0,0.02);
        }
        .hero p {
            font-size: 1.1rem;
            color: #3a4a5e;
            max-width: 800px;
            margin: 0 auto 24px;
        }
        .hero img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 16px auto;
            display: block;
        }
        .section-title {
            font-size: 1.6rem;
            font-weight: 600;
            margin: 48px 0 24px;
            color: #0b1a2e;
            border-left: 4px solid #4a90d9;
            padding-left: 16px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin: 24px 0;
        }
        .card {
            background: #ffffff;
            border-radius: 18px;
            padding: 24px;
            border: 1px solid #eef0f5;
            transition: all 0.25s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }
        .card:hover {
            border-color: #c8d4e6;
            box-shadow: 0 8px 20px rgba(74,144,217,0.06);
            transform: translateY(-2px);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 14px;
            background: #f0f2f6;
        }
        .card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            color: #0b1a2e;
        }
        .card p {
            color: #3f4f62;
            font-size: 0.95rem;
        }
        .date-tag {
            display: inline-block;
            background: #e7edf6;
            color: #2d4a6e;
            padding: 2px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .faq-item {
            background: #ffffff;
            border-radius: 18px;
            padding: 20px 24px;
            margin-bottom: 16px;
            border: 1px solid #eef0f5;
        }
        .faq-item h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0b1a2e;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #3f4f62;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .stat-box {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 16px;
            text-align: center;
            border: 1px solid #eef0f5;
        }
        .stat-box .number {
            font-size: 2rem;
            font-weight: 700;
            color: #1a3a5e;
        }
        .stat-box .label {
            color: #5a6f84;
            font-size: 0.9rem;
            margin-top: 4px;
        }
        .geo-intro {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 24px;
            margin: 24px 0;
            border: 1px solid #eef0f5;
            font-size: 1rem;
            color: #2d3a4a;
        }
        .cta-box {
            background: linear-gradient(135deg, #eef3fc, #ffffff);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            margin: 32px 0;
            border: 1px solid #dce3ef;
        }
        .cta-box h2 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        .cta-box p {
            color: #3f4f62;
            margin-bottom: 20px;
        }
        .btn {
            display: inline-block;
            background: #1a3a5e;
            color: white;
            padding: 12px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s;
        }
        .btn:hover {
            background: #2a4e7a;
        }
        footer {
            margin-top: 60px;
            padding: 40px 0 24px;
            border-top: 1px solid #e4e9f0;
            background: #ffffff;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        .footer-links a {
            color: #3a4a5e;
            text-decoration: none;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        .footer-info {
            text-align: center;
            color: #5a6f84;
            font-size: 0.85rem;
            line-height: 1.8;
        }
        .footer-info p {
            margin: 4px 0;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 20px 0;
        }
        .partner-logos img {
            height: 48px;
            width: auto;
            border-radius: 8px;
            background: #f2f4f8;
            padding: 4px 8px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 1.6rem; }
            .nav-links { gap: 12px; }
            .card-grid { grid-template-columns: 1fr; }
        }