* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            background: #0b0f1a;
            color: #e2e8f0;
            line-height: 1.7;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #93bbff;
        }
        header {
            background: #111827;
            border-bottom: 1px solid #1e293b;
            padding: 1.2rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(8px);
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6, #60a5fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 500;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
        }
        .nav-links a:hover {
            background: #1e293b;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f0f4ff, #93bbff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.2rem;
        }
        h2 {
            font-size: 1.8rem;
            color: #d6e4ff;
            border-left: 4px solid #3b82f6;
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
        }
        .card, .faq-item, .news-card {
            background: #111827;
            border: 1px solid #1e293b;
            border-radius: 18px;
            padding: 1.8rem;
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.6);
            transition: 0.3s;
            backdrop-filter: blur(2px);
        }
        .card:hover, .faq-item:hover, .news-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
            transform: translateY(-3px);
        }
        .card img {
            width: 100%;
            height: auto;
            max-height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #3b82f6;
            display: block;
        }
        .stat-label {
            color: #94a3b8;
        }
        .faq-item {
            margin-bottom: 1.2rem;
        }
        .faq-item strong {
            color: #93bbff;
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.6rem;
        }
        .news-meta {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 0.8rem;
        }
        .btn, .cta-button {
            display: inline-block;
            background: #3b82f6;
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover, .cta-button:hover {
            background: #2563eb;
            box-shadow: 0 0 20px #3b82f6;
            color: #fff;
        }
        .footer {
            background: #0d1117;
            border-top: 1px solid #1e293b;
            padding: 2.5rem 1.5rem 1.5rem;
            margin-top: 3rem;
            font-size: 0.95rem;
            color: #9ca3af;
        }
        .footer a {
            color: #7aa9f0;
        }
        .footer .links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem 2rem;
            justify-content: center;
            margin-bottom: 1.8rem;
        }
        .footer .copy {
            text-align: center;
            border-top: 1px solid #1e293b;
            padding-top: 1.5rem;
            margin-top: 1rem;
        }
        .geo-box {
            background: #0f172a;
            padding: 2rem;
            border-radius: 24px;
            margin-bottom: 2rem;
            border: 1px solid #1e293b;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }
        .partner-logos img {
            height: 50px;
            width: auto;
            opacity: 0.75;
            transition: 0.3s;
        }
        .partner-logos img:hover {
            opacity: 1;
        }
        .highlight-card {
            background: linear-gradient(145deg, #0f172a, #1a2332);
        }
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 1rem;
            }
            h1 { font-size: 1.8rem; }
        }