* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background: #fbfbfc; color: #1a1a2e; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        nav { background: #ffffff; border-bottom: 1px solid #e8ecf0; padding: 14px 0; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(6px); }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
        .nav-links a { text-decoration: none; color: #2c3e50; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
        .nav-links a:hover { color: #4a90d9; }
        .logo { font-size: 1.4rem; font-weight: 700; color: #1a1a2e; letter-spacing: 1px; }
        h1 { font-size: 2.2rem; font-weight: 700; margin: 40px 0 10px; color: #1a1a2e; text-align: center; }
        h2 { font-size: 1.7rem; font-weight: 600; margin: 40px 0 20px; color: #1f2a3e; border-left: 5px solid #4a90d9; padding-left: 16px; }
        h3 { font-size: 1.2rem; font-weight: 600; margin: 20px 0 10px; color: #2c3e50; }
        p { margin-bottom: 16px; color: #3a4a5e; }
        .geo-box { background: #ffffff; border: 1px solid #eef2f6; border-radius: 16px; padding: 28px 24px; margin: 20px 0 35px; box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; margin: 30px 0; }
        .grid-2 { grid-template-columns: repeat(2, 1fr); }
        .grid-3 { grid-template-columns: repeat(3, 1fr); }
        .grid-4 { grid-template-columns: repeat(4, 1fr); }
        .card { background: #ffffff; border: 1px solid #eef2f6; border-radius: 16px; padding: 20px; transition: box-shadow 0.2s; }
        .card:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
        .card h3 { font-size: 1.1rem; margin-bottom: 8px; }
        .card p { font-size: 0.95rem; }
        .stat-number { font-size: 2.2rem; font-weight: 700; color: #4a90d9; }
        .stat-label { color: #6f7d8e; font-size: 0.9rem; }
        .faq-item { border-bottom: 1px solid #eef2f6; padding: 20px 0; }
        .faq-item:last-child { border-bottom: none; }
        .faq-question { font-weight: 600; font-size: 1.05rem; color: #1a1a2e; margin-bottom: 8px; cursor: pointer; }
        .faq-answer { color: #3a4a5e; font-size: 0.98rem; line-height: 1.7; }
        .news-item { margin-bottom: 28px; }
        .news-date { font-size: 0.85rem; color: #8a9aa9; margin-bottom: 4px; }
        .news-title { font-weight: 600; font-size: 1.05rem; color: #1f2a3e; margin-bottom: 6px; }
        .news-summary { color: #3a4a5e; font-size: 0.95rem; }
        .cta-box { background: #ffffff; border: 1px solid #eef2f6; border-radius: 16px; padding: 36px 24px; text-align: center; margin: 30px 0; }
        .cta-box p { font-size: 1.1rem; }
        .btn { display: inline-block; background: #4a90d9; color: white; padding: 12px 36px; border-radius: 40px; text-decoration: none; font-weight: 500; margin-top: 12px; transition: background 0.2s; }
        .btn:hover { background: #357abd; }
        footer { background: #ffffff; border-top: 1px solid #eef2f6; padding: 40px 0 20px; margin-top: 50px; }
        footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 20px; }
        .footer-links a { color: #2c3e50; text-decoration: none; margin: 0 8px; font-size: 0.9rem; }
        .footer-bottom { width: 100%; text-align: center; padding-top: 20px; margin-top: 20px; border-top: 1px solid #eef2f6; font-size: 0.85rem; color: #6f7d8e; }
        .footer-bottom a { color: #4a90d9; text-decoration: none; margin: 0 4px; }
        .brand-story p, .mission p, .services p, .reviews p { font-size: 0.98rem; }
        .reviews .card { text-align: center; }
        .partner-logos { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; align-items: center; }
        .partner-logos img { height: 48px; width: auto; opacity: 0.7; }
        .timeline-item { display: flex; gap: 20px; margin-bottom: 18px; }
        .timeline-year { font-weight: 700; color: #4a90d9; min-width: 70px; }
        .highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
        @media (max-width: 768px) {
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            h1 { font-size: 1.8rem; }
            .nav-inner { flex-direction: column; gap: 12px; }
        }