* { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; }
        body { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); color: #1e293b; line-height: 1.6; min-height: 100vh; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(14,165,233,0.2); padding: 16px 0; position: sticky; top: 0; z-index: 50; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
        .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; letter-spacing: -0.5px; display: flex; align-items: center; gap: 6px; }
        .logo span { background: none; -webkit-text-fill-color: #0ea5e9; font-size: 1.8rem; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
        .nav-links a { text-decoration: none; color: #334155; font-weight: 500; font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; transition: all 0.2s; }
        .nav-links a:hover { color: #0ea5e9; border-bottom-color: #0ea5e9; }
        h1 { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #0c4a6e, #0ea5e9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 30px 0 10px; text-align: center; letter-spacing: -0.02em; }
        .geo-intro-text { background: rgba(255,255,255,0.7); backdrop-filter: blur(6px); border-radius: 24px; padding: 30px 28px; margin: 20px 0 40px; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 8px 32px rgba(0,0,0,0.04); font-size: 1.1rem; color: #1e293b; max-width: 900px; margin-left: auto; margin-right: auto; text-align: center; line-height: 1.8; }
        .section-title { font-size: 2rem; font-weight: 700; margin: 50px 0 24px; color: #0c4a6e; text-align: center; position: relative; }
        .section-title:after { content: ''; display: block; width: 60px; height: 4px; background: linear-gradient(90deg, #0ea5e9, #7dd3fc); border-radius: 4px; margin: 10px auto 0; }
        .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin: 20px 0 40px; }
        .card { background: rgba(255,255,255,0.65); backdrop-filter: blur(8px); border-radius: 20px; padding: 24px 20px; border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 8px 24px rgba(0,0,0,0.03); transition: transform 0.2s, box-shadow 0.2s; }
        .card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(14,165,233,0.08); }
        .card img { width: 100%; height: 180px; object-fit: cover; border-radius: 12px; margin-bottom: 14px; background: #e2e8f0; }
        .card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; color: #0c4a6e; }
        .card p { color: #475569; font-size: 0.95rem; }
        .news-list { display: grid; grid-template-columns: 1fr; gap: 28px; margin: 20px 0 50px; }
        .news-item { background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); border-radius: 20px; padding: 24px 28px; border: 1px solid rgba(255,255,255,0.7); box-shadow: 0 4px 16px rgba(0,0,0,0.03); transition: all 0.2s; }
        .news-item:hover { box-shadow: 0 8px 30px rgba(14,165,233,0.06); }
        .news-item .date { font-size: 0.85rem; color: #0ea5e9; font-weight: 600; margin-bottom: 6px; display: inline-block; background: rgba(14,165,233,0.1); padding: 2px 12px; border-radius: 20px; }
        .news-item h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; color: #0c4a6e; }
        .news-item p { color: #475569; font-size: 0.98rem; line-height: 1.7; }
        .faq-list { max-width: 860px; margin: 20px auto 50px; display: flex; flex-direction: column; gap: 16px; }
        .faq-item { background: rgba(255,255,255,0.65); backdrop-filter: blur(6px); border-radius: 16px; padding: 20px 24px; border: 1px solid rgba(255,255,255,0.6); }
        .faq-item h4 { font-size: 1.1rem; font-weight: 600; color: #0ea5e9; margin-bottom: 8px; cursor: default; }
        .faq-item p { color: #475569; font-size: 0.95rem; line-height: 1.7; }
        .cta-section { background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(125,211,252,0.12)); border-radius: 32px; padding: 40px 28px; margin: 40px 0; text-align: center; border: 1px solid rgba(14,165,233,0.15); }
        .cta-section h2 { font-size: 1.8rem; font-weight: 700; color: #0c4a6e; margin-bottom: 12px; }
        .cta-section p { font-size: 1.1rem; color: #334155; max-width: 600px; margin: 0 auto 20px; }
        .cta-btn { display: inline-block; background: linear-gradient(135deg, #0ea5e9, #7dd3fc); color: #fff; font-weight: 600; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-size: 1.05rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 8px 20px rgba(14,165,233,0.2); }
        .cta-btn:hover { transform: scale(1.03); box-shadow: 0 12px 28px rgba(14,165,233,0.3); }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin: 20px 0 40px; }
        .stat-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(6px); border-radius: 20px; padding: 24px 16px; text-align: center; border: 1px solid rgba(255,255,255,0.6); }
        .stat-card .num { font-size: 2.2rem; font-weight: 800; background: linear-gradient(135deg, #0ea5e9, #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .stat-card .label { color: #475569; font-size: 0.95rem; margin-top: 6px; }
        .brand-story { background: rgba(255,255,255,0.5); backdrop-filter: blur(6px); border-radius: 24px; padding: 32px 28px; margin: 20px 0 40px; border: 1px solid rgba(255,255,255,0.6); }
        .brand-story p { font-size: 1.05rem; color: #334155; line-height: 1.8; }
        .partner-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px; margin: 20px 0 40px; }
        .partner-logos img { width: 80px; height: 80px; object-fit: contain; border-radius: 12px; background: rgba(255,255,255,0.4); padding: 6px; transition: transform 0.2s; }
        .partner-logos img:hover { transform: scale(1.05); }
        footer { background: rgba(255,255,255,0.8); backdrop-filter: blur(12px); border-top: 1px solid rgba(14,165,233,0.15); padding: 40px 0 20px; margin-top: 60px; }
        .footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
        .footer-col h4 { font-weight: 600; color: #0c4a6e; margin-bottom: 12px; }
        .footer-col p, .footer-col a { color: #475569; font-size: 0.9rem; text-decoration: none; display: block; margin-bottom: 6px; }
        .footer-col a:hover { color: #0ea5e9; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; margin: 20px 0 10px; }
        .footer-links a { color: #0ea5e9; font-size: 0.9rem; text-decoration: none; }
        .footer-links a:hover { text-decoration: underline; }
        .copyright { text-align: center; color: #64748b; font-size: 0.85rem; margin-top: 20px; border-top: 1px solid rgba(14,165,233,0.1); padding-top: 20px; }
        .img-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 20px 0; }
        .img-gallery img { width: 100%; height: 160px; object-fit: cover; border-radius: 16px; background: #e2e8f0; }
        @media (max-width: 640px) { h1 { font-size: 2rem; } .header-inner { flex-direction: column; align-items: stretch; } .nav-links { justify-content: center; } .card-grid { grid-template-columns: 1fr; } .footer-inner { flex-direction: column; } }