* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            color: #1e293b;
            line-height: 1.7;
            scroll-behavior: smooth;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        header {
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 12px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .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;
        }
        .nav-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #1e293b;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 40px;
            background: rgba(255,255,255,0.5);
            transition: all 0.2s;
            font-size: 0.95rem;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
            color: #fff;
            border-color: #0ea5e9;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0f172a, #0ea5e9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
            text-align: center;
            padding-top: 40px;
        }
        .hero {
            padding: 40px 0 56px;
            text-align: center;
        }
        .hero p {
            max-width: 720px;
            margin: 0 auto 32px;
            color: #334155;
            font-size: 1.1rem;
        }
        .geo-intro {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(8px);
            border-radius: 24px;
            padding: 32px 28px;
            margin: 32px 0;
            border: 1px solid rgba(255,255,255,0.6);
        }
        .geo-intro p {
            font-size: 1rem;
            color: #1e293b;
            line-height: 1.8;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin: 48px 0 24px;
            background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 28px 20px;
            border: 1px solid rgba(255,255,255,0.5);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(14,165,233,0.12);
        }
        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
        }
        .card h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #0f172a;
        }
        .card p {
            color: #334155;
            font-size: 0.95rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            margin: 28px 0;
        }
        .stat-item {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 24px 12px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.4);
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stat-label {
            color: #475569;
            margin-top: 4px;
            font-size: 0.95rem;
        }
        .faq-item {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 16px;
            border: 1px solid rgba(255,255,255,0.4);
        }
        .faq-item h4 {
            font-size: 1.1rem;
            color: #0f172a;
            margin-bottom: 8px;
        }
        .faq-item p {
            color: #334155;
            font-size: 0.95rem;
        }
        .news-card {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 24px 20px;
            border: 1px solid rgba(255,255,255,0.5);
            margin-bottom: 20px;
        }
        .news-card .date {
            font-size: 0.85rem;
            color: #0ea5e9;
            font-weight: 500;
            margin-bottom: 6px;
        }
        .news-card h3 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            color: #0f172a;
        }
        .news-card p {
            color: #334155;
            font-size: 0.95rem;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .testimonial-item {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 24px 20px;
            border: 1px solid rgba(255,255,255,0.4);
        }
        .testimonial-item p {
            font-style: italic;
            color: #334155;
        }
        .testimonial-item .author {
            margin-top: 12px;
            font-weight: 600;
            color: #0f172a;
        }
        .cta {
            background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(125,211,252,0.12));
            border-radius: 28px;
            padding: 48px 32px;
            text-align: center;
            margin: 48px 0;
            border: 1px solid rgba(14,165,233,0.2);
        }
        .cta h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }
        .cta p {
            max-width: 600px;
            margin: 0 auto 24px;
            color: #334155;
        }
        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #0ea5e9, #7dd3fc);
            color: #fff;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.2s;
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            opacity: 0.85;
        }
        footer {
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(255,255,255,0.3);
            padding: 40px 0 24px;
            margin-top: 48px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
        }
        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #0f172a;
        }
        .footer-col p, .footer-col a {
            color: #475569;
            font-size: 0.95rem;
            display: block;
            margin-bottom: 6px;
            text-decoration: none;
        }
        .footer-col a:hover {
            color: #0ea5e9;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(0,0,0,0.06);
            margin-top: 24px;
            font-size: 0.9rem;
            color: #64748b;
        }
        .footer-bottom a {
            color: #0ea5e9;
            text-decoration: none;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        .links-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 16px 0;
        }
        .links-row a {
            color: #475569;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .links-row a:hover {
            color: #0ea5e9;
        }
        @media (max-width: 640px) {
            h1 { font-size: 2rem; }
            .header-inner { flex-direction: column; align-items: stretch; }
            .nav-links { justify-content: center; }
        }