* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, #ff6b35, #ff2e63, #8e2de2);
            color: #1a1a2e;
            line-height: 1.6;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(to right, #fff, #ffe0b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: opacity 0.2s;
        }
        .nav-links a:hover {
            opacity: 0.8;
            text-decoration: underline;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            padding: 40px 0 10px;
            color: #fff;
            text-shadow: 2px 2px 12px rgba(0,0,0,0.3);
        }
        .geo-section {
            background: rgba(255,255,240,0.15);
            backdrop-filter: blur(4px);
            border-radius: 24px;
            padding: 28px;
            margin: 20px 0;
            color: #fff;
            font-size: 1.1rem;
        }
        .grid-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 40px 0;
        }
        .card {
            background: linear-gradient(145deg, rgba(255, 140, 60, 0.3), rgba(200, 50, 180, 0.25));
            backdrop-filter: blur(5px);
            border-radius: 28px;
            padding: 24px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.2);
            transition: transform 0.2s ease;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.15);
        }
        .card:hover {
            transform: translateY(-6px);
        }
        .card img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            margin-bottom: 16px;
            object-fit: cover;
            max-height: 200px;
        }
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            background: linear-gradient(to right, #ffe082, #ffcd94);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .card p {
            font-size: 1rem;
            opacity: 0.9;
        }
        .stats-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            padding: 30px 0;
        }
        .stat-item {
            text-align: center;
            background: rgba(255,255,255,0.1);
            padding: 24px 32px;
            border-radius: 40px;
            min-width: 150px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #ffd54f;
        }
        .stat-label {
            color: #fff;
            font-size: 1.1rem;
        }
        .news-item {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .news-item h4 {
            font-size: 1.3rem;
            margin-bottom: 6px;
            color: #ffecb3;
        }
        .news-date {
            font-size: 0.9rem;
            color: #ffe0b2;
            margin-bottom: 8px;
        }
        .faq-item {
            background: rgba(255,255,240,0.08);
            border-radius: 24px;
            padding: 20px 20px 24px;
            margin: 20px 0;
        }
        .faq-item h4 {
            font-size: 1.2rem;
            color: #ffd54f;
            margin-bottom: 8px;
        }
        footer {
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(6px);
            margin-top: 60px;
            padding: 40px 0 20px;
            color: #eee;
            font-size: 0.95rem;
        }
        footer a {
            color: #ffcc80;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            justify-content: center;
            margin-bottom: 20px;
        }
        .footer-info {
            text-align: center;
            line-height: 2;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b35, #ff2e63);
            color: #fff;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            margin-top: 12px;
            transition: 0.2s;
        }
        .btn-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 20px rgba(255, 45, 85, 0.5);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; }
        }