* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #f9fafc;
            color: #1e2a3a;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: #ffffff;
            border-bottom: 1px solid #e9edf2;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(4px);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #0b1e33;
        }
        .logo span {
            color: #3b82f6;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #1e2a3a;
            font-weight: 500;
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .nav-links a:hover {
            border-bottom-color: #3b82f6;
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            margin: 40px 0 16px;
            line-height: 1.2;
            color: #0b1e33;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin: 48px 0 24px;
            border-left: 6px solid #3b82f6;
            padding-left: 18px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: #ffffff;
            border: 1px solid #eef2f7;
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            transition: box-shadow 0.25s, transform 0.2s;
        }
        .card:hover {
            box-shadow: 0 10px 24px rgba(0,0,0,0.04);
            transform: translateY(-4px);
        }
        .card h3 {
            margin-bottom: 12px;
            font-weight: 600;
            font-size: 1.25rem;
        }
        .card p {
            color: #3d4a5c;
            font-size: 0.95rem;
        }
        .image-wrapper {
            margin: 32px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            border: 1px solid #e9edf2;
            background: #fff;
            padding: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
            width: 220px;
            object-fit: cover;
        }
        .geo-text {
            background: #ffffff;
            border: 1px solid #eef2f7;
            border-radius: 20px;
            padding: 28px 32px;
            margin: 24px 0;
            font-size: 1.05rem;
            color: #1e2a3a;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: space-around;
        }
        .stat-item {
            background: #ffffff;
            border: 1px solid #eef2f7;
            border-radius: 18px;
            padding: 28px 36px;
            text-align: center;
            min-width: 160px;
            flex: 1;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #0b1e33;
        }
        .stat-label {
            color: #5a6a7e;
            margin-top: 6px;
        }
        .faq-item {
            background: #ffffff;
            border: 1px solid #eef2f7;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 14px;
        }
        .faq-item strong {
            font-size: 1.05rem;
            display: block;
            margin-bottom: 8px;
        }
        .news-card {
            background: #ffffff;
            border: 1px solid #eef2f7;
            border-radius: 18px;
            padding: 20px;
            margin-bottom: 18px;
        }
        .news-date {
            display: inline-block;
            background: #eef4ff;
            padding: 4px 12px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #2563eb;
            margin-bottom: 8px;
        }
        .news-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .partner-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            justify-content: center;
            margin: 22px 0;
        }
        .partner-links a {
            text-decoration: none;
            color: #3b82f6;
            font-weight: 500;
            border-bottom: 1px dashed #b0c8e0;
        }
        .partner-links a:hover {
            color: #1e4b8f;
        }
        footer {
            background: #ffffff;
            border-top: 1px solid #e9edf2;
            margin-top: 60px;
            padding: 32px 0 24px;
            text-align: center;
            font-size: 0.9rem;
            color: #4b5b6e;
        }
        footer .footer-links {
            margin: 12px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
        }
        footer .footer-links a {
            color: #3b82f6;
            text-decoration: none;
        }
        footer .footer-extra {
            margin-top: 16px;
            color: #6b7c8e;
        }
        .cta-box {
            background: #eef4ff;
            border-radius: 30px;
            padding: 40px 32px;
            text-align: center;
            margin: 36px 0;
        }
        .cta-box .cta-btn {
            display: inline-block;
            background: #0b1e33;
            color: white;
            padding: 14px 42px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 18px;
            transition: background 0.2s;
        }
        .cta-box .cta-btn:hover {
            background: #1e3a5f;
        }
        @media (max-width: 700px) {
            h1 { font-size: 1.8rem; }
            .header-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
            .nav-links { gap: 12px; }
        }