* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #f8f9fa; color: #222; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: #fff; border-bottom: 1px solid #e9ecef; padding: 12px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 4px rgba(0,0,0,0.02); }
        .nav-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #333; font-size: 15px; font-weight: 500; transition: color 0.2s; padding: 4px 8px; border-radius: 6px; }
        .nav-links a:hover { color: #4a90d9; background: #f0f4ff; }
        h1 { text-align: center; font-size: 2.2rem; font-weight: 600; color: #1a1a2e; margin: 40px 0 10px; letter-spacing: 1px; }
        .subhead { text-align: center; color: #555; max-width: 800px; margin: 0 auto 50px; font-size: 1.05rem; }
        .geo-section { background: #fff; border-radius: 16px; padding: 32px 28px; margin-bottom: 40px; border: 1px solid #eef1f5; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
        .geo-section p { color: #444; font-size: 1rem; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 40px 0; }
        .card { background: #fff; border-radius: 14px; padding: 24px; border: 1px solid #edf2f7; transition: transform 0.15s, box-shadow 0.15s; }
        .card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
        .card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #1a1a2e; }
        .card p { color: #555; font-size: 0.95rem; }
        .card img { width: 100%; height: auto; border-radius: 10px; margin-bottom: 14px; object-fit: cover; max-height: 180px; }
        .hero { background: linear-gradient(145deg, #ffffff, #f4f6fb); border-radius: 20px; padding: 50px 30px; text-align: center; margin: 30px 0; border: 1px solid #e4e9f0; }
        .hero h2 { font-size: 2rem; color: #1a1a2e; margin-bottom: 16px; }
        .hero p { max-width: 700px; margin: 0 auto 20px; color: #4a4a5a; }
        .hero img { max-width: 100%; border-radius: 14px; margin-top: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
        .stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; padding: 40px 0; }
        .stat-item { text-align: center; background: #fff; padding: 20px 30px; border-radius: 14px; border: 1px solid #eef1f5; min-width: 150px; }
        .stat-item .number { font-size: 2.2rem; font-weight: 700; color: #1a1a2e; }
        .stat-item .label { color: #666; font-size: 0.9rem; margin-top: 4px; }
        .faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; margin: 30px 0; }
        .faq-item { background: #fff; border-radius: 14px; padding: 20px 22px; border: 1px solid #edf2f7; }
        .faq-item h4 { font-size: 1.05rem; margin-bottom: 10px; color: #1a1a2e; }
        .faq-item p { color: #555; font-size: 0.95rem; }
        .news-list { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
        .news-item { background: #fff; border-radius: 14px; padding: 22px 24px; border: 1px solid #edf2f7; }
        .news-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: #1a1a2e; }
        .news-item .date { color: #888; font-size: 0.85rem; margin-bottom: 8px; }
        .news-item p { color: #555; font-size: 0.95rem; }
        .testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 30px 0; }
        .testimonial-card { background: #fff; border-radius: 14px; padding: 24px; border: 1px solid #edf2f7; }
        .testimonial-card p { font-style: italic; color: #444; }
        .testimonial-card .author { margin-top: 14px; font-weight: 600; color: #1a1a2e; }
        .cta { background: #fff; border-radius: 16px; padding: 40px 28px; text-align: center; border: 1px solid #e4e9f0; margin: 40px 0; }
        .cta h2 { font-size: 1.8rem; margin-bottom: 16px; }
        .cta p { color: #555; max-width: 600px; margin: 0 auto 20px; }
        .cta a { display: inline-block; background: #4a90d9; color: #fff; padding: 12px 32px; border-radius: 30px; text-decoration: none; font-weight: 500; transition: background 0.2s; }
        .cta a:hover { background: #357abd; }
        .partners { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 30px 0; }
        .partners img { height: 40px; opacity: 0.7; filter: grayscale(0.2); transition: 0.2s; }
        .partners img:hover { opacity: 1; filter: grayscale(0); }
        .footer { background: #fff; border-top: 1px solid #e9ecef; padding: 40px 20px 20px; margin-top: 50px; font-size: 0.9rem; color: #555; text-align: center; }
        .footer a { color: #4a90d9; text-decoration: none; margin: 0 8px; }
        .footer a:hover { text-decoration: underline; }
        .footer-links { margin: 16px 0; }
        .footer-links a { margin: 0 6px; }
        .footer-addr { margin: 8px 0; color: #666; }
        .section-title { font-size: 1.6rem; font-weight: 600; color: #1a1a2e; margin: 50px 0 20px; border-left: 4px solid #4a90d9; padding-left: 16px; }
        @media (max-width: 768px) { h1 { font-size: 1.7rem; } .nav-links { gap: 10px; } .nav-links a { font-size: 13px; } .hero { padding: 30px 18px; } .hero h2 { font-size: 1.5rem; } }