* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            color: #1e293b;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(14,165,233,0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #334155;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.25s ease;
            background: rgba(255,255,255,0.5);
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
            color: #fff;
            box-shadow: 0 4px 12px rgba(14,165,233,0.3);
        }
        h1 {
            font-size: 2.4rem;
            font-weight: 700;
            padding: 30px 20px 10px;
            text-align: center;
            background: linear-gradient(135deg, #0c4a6e, #0ea5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .geo-intro {
            max-width: 800px;
            margin: 10px auto 30px;
            padding: 20px 24px;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            box-shadow: 0 8px 30px rgba(14,165,233,0.08);
            font-size: 1.05rem;
            color: #1e293b;
            text-align: center;
            border: 1px solid rgba(14,165,233,0.2);
        }
        .section {
            margin: 30px 0;
            padding: 30px 20px;
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(8px);
            border-radius: 28px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            border: 1px solid rgba(14,165,233,0.12);
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #0c4a6e;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 20px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        .card {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(6px);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid rgba(14,165,233,0.15);
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(14,165,233,0.15);
            border-color: #0ea5e9;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 14px;
        }
        .card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #0c4a6e;
        }
        .card p {
            color: #475569;
            font-size: 0.95rem;
        }
        .btn {
            display: inline-block;
            padding: 10px 24px;
            background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(14,165,233,0.3);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            padding: 20px;
            background: rgba(255,255,255,0.5);
            border-radius: 20px;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: #0ea5e9;
        }
        .news-item {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(4px);
            padding: 20px;
            border-radius: 20px;
            margin-bottom: 16px;
            border-left: 4px solid #0ea5e9;
        }
        .news-date {
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 6px;
        }
        .faq-item {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(4px);
            padding: 18px 22px;
            border-radius: 18px;
            margin-bottom: 14px;
            border: 1px solid rgba(14,165,233,0.1);
        }
        .faq-question {
            font-weight: 600;
            color: #0c4a6e;
            margin-bottom: 8px;
            font-size: 1.05rem;
        }
        .faq-answer {
            color: #475569;
        }
        footer {
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(14,165,233,0.15);
            padding: 30px 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: #475569;
        }
        footer a {
            color: #0ea5e9;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin: 16px 0;
        }
        .footer-info p {
            margin: 6px 0;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                justify-content: center;
            }
            h1 { font-size: 1.8rem; }
        }