* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #f8fafc; color: #1e293b; line-height: 1.6; }
        a { color: #0ea5e9; text-decoration: none; transition: opacity 0.2s; }
        a:hover { opacity: 0.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #ffffff; border-bottom: 1px solid #e2e8f0; padding: 16px 0; position: sticky; top: 0; z-index: 50; backdrop-filter: blur(4px); }
        header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.5rem; font-weight: 700; color: #0f172a; letter-spacing: -0.02em; }
        .logo span { color: #0ea5e9; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { font-size: 0.9rem; font-weight: 500; color: #334155; padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
        .nav-links a:hover { border-bottom-color: #0ea5e9; color: #0f172a; }
        h1 { font-size: 2.2rem; font-weight: 700; color: #0f172a; margin: 40px 0 12px; line-height: 1.2; }
        .subhead { font-size: 1rem; color: #64748b; margin-bottom: 32px; max-width: 720px; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
        .card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; transition: box-shadow 0.2s; }
        .card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; background: #f1f5f9; }
        .card h3 { font-size: 1.1rem; margin-bottom: 8px; }
        .card p { font-size: 0.9rem; color: #475569; }
        .tag { display: inline-block; background: #e0f2fe; color: #0284c7; font-size: 0.75rem; padding: 2px 10px; border-radius: 20px; margin-bottom: 12px; }
        .btn { display: inline-block; background: #0ea5e9; color: white; padding: 10px 28px; border-radius: 40px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: background 0.2s; }
        .btn:hover { background: #0284c7; opacity: 1; }
        .section-title { font-size: 1.6rem; font-weight: 600; margin: 48px 0 24px; color: #0f172a; }
        .geo-text { font-size: 0.95rem; color: #334155; max-width: 850px; line-height: 1.7; }
        .faq-item { background: white; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
        .faq-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: #0f172a; }
        .faq-item p { font-size: 0.9rem; color: #475569; }
        .news-item { border-bottom: 1px solid #e2e8f0; padding: 20px 0; }
        .news-item:last-child { border-bottom: 0; }
        .news-item .date { font-size: 0.8rem; color: #94a3b8; margin-bottom: 4px; }
        .news-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
        .news-item p { font-size: 0.9rem; color: #475569; }
        footer { background: #ffffff; border-top: 1px solid #e2e8f0; margin-top: 60px; padding: 40px 0 24px; font-size: 0.85rem; color: #64748b; }
        footer .footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-bottom: 16px; }
        footer a { color: #0ea5e9; }
        footer .footer-meta { border-top: 1px solid #e2e8f0; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
        .flex-2col { display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; }
        .flex-2col > div { flex: 1 1 300px; }
        .icon-badge { display: inline-flex; align-items: center; gap: 6px; background: #f1f5f9; border-radius: 40px; padding: 4px 14px; font-size: 0.8rem; color: #1e293b; }
        @media (max-width: 768px) {
            h1 { font-size: 1.6rem; }
            .nav-links { gap: 12px; margin-top: 8px; }
            .nav-links a { font-size: 0.8rem; }
            .card-grid { grid-template-columns: 1fr; }
        }