* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #f8f9fa; color: #1a1a2e; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: #ffffff; border-bottom: 1px solid #e9ecef; 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: 16px; }
        .logo-area { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 600; color: #0d6efd; letter-spacing: 0.5px; }
        .logo-area span { color: #1a1a2e; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #495057; font-size: 15px; font-weight: 500; padding: 6px 0; border-bottom: 2px solid transparent; transition: all 0.2s; }
        .nav-links a:hover { color: #0d6efd; border-bottom-color: #0d6efd; }
        h1 { font-size: 32px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; line-height: 1.3; }
        h2 { font-size: 26px; font-weight: 600; color: #1a1a2e; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
        h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: #0d6efd; border-radius: 2px; }
        .hero-section { background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%); padding: 60px 0; border-bottom: 1px solid #e9ecef; }
        .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .hero-content p { font-size: 16px; color: #6c757d; margin-top: 12px; max-width: 540px; }
        .hero-img { width: 100%; border-radius: 16px; box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
        .geo-section { padding: 48px 0; background: #ffffff; }
        .geo-text { font-size: 16px; color: #495057; max-width: 900px; line-height: 1.8; }
        .section-card { background: #ffffff; border: 1px solid #e9ecef; border-radius: 16px; padding: 40px; margin-bottom: 32px; box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
        .stat-item { text-align: center; padding: 20px; background: #f8f9fa; border-radius: 12px; }
        .stat-number { font-size: 36px; font-weight: 700; color: #0d6efd; }
        .stat-label { font-size: 14px; color: #6c757d; margin-top: 4px; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
        .feature-item { padding: 24px; background: #f8f9fa; border-radius: 12px; border: 1px solid #e9ecef; }
        .feature-item h3 { font-size: 18px; margin-bottom: 8px; color: #1a1a2e; }
        .feature-item p { font-size: 14px; color: #6c757d; }
        .news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        .news-card { background: #ffffff; border: 1px solid #e9ecef; border-radius: 12px; padding: 24px; transition: box-shadow 0.2s; }
        .news-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.04); }
        .news-date { font-size: 13px; color: #adb5bd; margin-bottom: 8px; }
        .news-card h3 { font-size: 18px; margin-bottom: 8px; color: #1a1a2e; }
        .news-card p { font-size: 14px; color: #6c757d; }
        .faq-item { border-bottom: 1px solid #e9ecef; padding: 20px 0; }
        .faq-item h3 { font-size: 17px; color: #1a1a2e; margin-bottom: 8px; cursor: pointer; }
        .faq-item p { font-size: 15px; color: #495057; }
        .partners-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
        .partner-logo { background: #f8f9fa; padding: 16px 24px; border-radius: 12px; border: 1px solid #e9ecef; font-size: 14px; color: #495057; font-weight: 500; }
        .cta-section { background: linear-gradient(135deg, #0d6efd 0%, #4d8bf0 100%); color: #ffffff; padding: 48px 0; border-radius: 16px; text-align: center; }
        .cta-section h2 { color: #ffffff; }
        .cta-section h2::after { background: #ffffff; left: 50%; transform: translateX(-50%); }
        .cta-section p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 0 auto 24px; }
        .btn { display: inline-block; background: #ffffff; color: #0d6efd; padding: 12px 32px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: background 0.2s; }
        .btn:hover { background: #e9ecef; }
        footer { background: #1a1a2e; color: #ced4da; padding: 48px 0 24px; margin-top: 48px; }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
        .footer-col h4 { color: #ffffff; font-size: 16px; margin-bottom: 16px; }
        .footer-col p, .footer-col a { font-size: 14px; color: #adb5bd; text-decoration: none; display: block; margin-bottom: 6px; }
        .footer-col a:hover { color: #ffffff; }
        .footer-bottom { border-top: 1px solid #343a40; margin-top: 32px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: #6c757d; }
        .footer-links a { color: #adb5bd; text-decoration: none; margin: 0 8px; }
        .footer-links a:hover { color: #ffffff; }
        img { max-width: 100%; height: auto; }
        .img-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 24px 0; }
        .img-row img { border-radius: 12px; border: 1px solid #e9ecef; object-fit: cover; height: 180px; width: 100%; }
        @media (max-width: 768px) {
            .hero-grid { grid-template-columns: 1fr; }
            h1 { font-size: 26px; }
            .nav-links { gap: 12px; }
            .section-card { padding: 24px; }
        }