* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background: linear-gradient(145deg, #0b1120 0%, #1a1a2e 100%);
            color: #e5e7eb;
            min-height: 100vh;
        }
        a {
            color: #fbbf24;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #fcd34d;
            text-shadow: 0 0 12px rgba(251,191,36,0.3);
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: rgba(11,17,32,0.7);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(251,191,36,0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 1rem;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            border-bottom-color: #fbbf24;
        }
        h1 {
            font-size: 3rem;
            font-weight: 700;
            text-align: center;
            margin: 48px 0 16px;
            background: linear-gradient(to right, #fbbf24, #fcd34d, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }
        .geo-intro {
            max-width: 860px;
            margin: 0 auto 48px;
            font-size: 1.1rem;
            text-align: center;
            line-height: 1.7;
            color: #cbd5e1;
            padding: 0 12px;
        }
        .section-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(16px);
            border-radius: 28px;
            padding: 40px 36px;
            margin: 48px 0;
            border: 1px solid rgba(251,191,36,0.1);
            box-shadow: 0 12px 48px rgba(0,0,0,0.5);
            transition: all 0.35s ease;
        }
        .section-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(251,191,36,0.08);
            border-color: rgba(251,191,36,0.25);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 28px;
            color: #fbbf24;
            border-left: 4px solid #fbbf24;
            padding-left: 18px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 28px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(0,0,0,0.25);
            border-radius: 20px;
            backdrop-filter: blur(6px);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fbbf24;
        }
        .stat-label {
            font-size: 1rem;
            color: #9ca3af;
            margin-top: 6px;
        }
        .advantage-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
        .news-card {
            background: rgba(255,255,255,0.04);
            border-radius: 20px;
            padding: 20px;
            transition: 0.3s;
            border: 1px solid transparent;
        }
        .news-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: rgba(251,191,36,0.2);
            transform: translateY(-3px);
        }
        .news-date {
            display: inline-block;
            background: rgba(251,191,36,0.15);
            color: #fbbf24;
            padding: 2px 14px;
            border-radius: 30px;
            font-size: 0.8rem;
            margin-bottom: 8px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 6px;
            color: #f1f5f9;
        }
        .news-excerpt {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #b0b8c8;
        }
        .faq-item {
            padding: 18px 0;
            border-bottom: 1px solid rgba(251,191,36,0.08);
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.15rem;
            color: #fbbf24;
            margin-bottom: 6px;
        }
        .faq-answer {
            line-height: 1.7;
            color: #cbd5e1;
        }
        .img-fluid {
            width: 100%;
            border-radius: 18px;
            object-fit: cover;
            height: auto;
            max-height: 300px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.5);
        }
        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        footer {
            background: rgba(11,17,32,0.8);
            backdrop-filter: blur(14px);
            border-top: 1px solid rgba(251,191,36,0.08);
            padding: 40px 0 20px;
            margin-top: 64px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px;
        }
        .footer-col {
            flex: 1;
            min-width: 180px;
        }
        .footer-col h4 {
            color: #fbbf24;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-col p, .footer-col a {
            font-size: 0.9rem;
            color: #9ca3af;
            line-height: 1.8;
        }
        .friend-links {
            text-align: center;
            padding: 24px 0 12px;
            border-top: 1px solid rgba(251,191,36,0.06);
            margin-top: 24px;
            font-size: 0.9rem;
        }
        .friend-links a {
            margin: 0 8px;
        }
        .copyright {
            text-align: center;
            color: #6b7280;
            font-size: 0.85rem;
            padding-top: 12px;
        }
        @media (max-width: 640px) {
            h1 { font-size: 2rem; }
            .section-card { padding: 24px 16px; }
            .nav-links { gap: 12px; }
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0b1120;
            font-weight: 700;
            padding: 14px 42px;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: 0.3s;
            box-shadow: 0 6px 24px rgba(251,191,36,0.2);
            border: none;
            cursor: pointer;
        }
        .cta-button:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 40px rgba(251,191,36,0.3);
            color: #0b1120;
        }
        .testimonial {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 24px;
            border-left: 3px solid #fbbf24;
            margin-bottom: 16px;
        }
        .testimonial-text {
            font-style: italic;
            line-height: 1.7;
        }
        .testimonial-author {
            margin-top: 12px;
            color: #fbbf24;
            font-weight: 500;
        }