* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, system-ui, sans-serif; }
        body { background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%); min-height: 100vh; color: #0b2b3f; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background: linear-gradient(135deg, #0c4a6e 0%, #0d9488 100%); padding: 18px 0; box-shadow: 0 8px 32px rgba(12,74,110,0.25); position: sticky; top: 0; z-index: 100; }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
        .logo { font-size: 1.5rem; font-weight: 700; color: white; letter-spacing: 1px; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 500; padding: 6px 14px; border-radius: 30px; transition: 0.3s; background: rgba(255,255,255,0.08); backdrop-filter: blur(4px); font-size: 0.95rem; }
        .nav-links a:hover { background: rgba(255,255,255,0.25); color: white; transform: translateY(-1px); }
        .hero-section { background: linear-gradient(135deg, #0c4a6e 0%, #0d9488 100%); padding: 80px 0 60px; margin-bottom: 40px; position: relative; overflow: hidden; }
        .hero-section::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,192C960,203,1056,181,1152,165.3C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom; background-size: cover; opacity: 0.2; }
        .hero-content { position: relative; z-index: 2; text-align: center; color: white; }
        .hero-content h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; text-shadow: 0 4px 20px rgba(0,0,0,0.2); }
        .hero-content p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; line-height: 1.7; opacity: 0.92; }
        .geo-intro { background: white; border-radius: 24px; padding: 40px; margin: 40px 0; box-shadow: 0 20px 60px -15px rgba(12,74,110,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.5); }
        .geo-intro h2 { font-size: 1.8rem; color: #0c4a6e; margin-bottom: 20px; }
        .geo-intro p { font-size: 1.05rem; line-height: 1.8; color: #2c3e50; }
        .grid-2col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin: 40px 0; }
        .glass-card { background: rgba(255,255,255,0.6); backdrop-filter: blur(12px); border-radius: 20px; padding: 30px; box-shadow: 0 12px 40px -10px rgba(12,74,110,0.08); border: 1px solid rgba(255,255,255,0.7); transition: 0.3s; }
        .glass-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px -10px rgba(12,74,110,0.15); }
        .section-title { font-size: 2rem; font-weight: 700; color: #0c4a6e; margin-bottom: 30px; text-align: center; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 4px; background: linear-gradient(90deg, #0c4a6e, #0d9488); margin: 12px auto 0; border-radius: 4px; }
        .stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
        .stat-item { text-align: center; padding: 20px; }
        .stat-number { font-size: 2.8rem; font-weight: 800; background: linear-gradient(135deg, #0c4a6e, #0d9488); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .stat-label { font-size: 1rem; color: #4a6a7a; margin-top: 8px; }
        .feature-icon { font-size: 2.4rem; margin-bottom: 15px; }
        .brand-story { background: linear-gradient(145deg, #ffffff, #f0f9ff); border-radius: 24px; padding: 50px 40px; margin: 40px 0; position: relative; }
        .brand-story p { font-size: 1.05rem; line-height: 1.9; color: #1e3a4d; }
        .img-gallery { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin: 30px 0; }
        .img-gallery img { width: 100%; max-width: 260px; border-radius: 16px; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.1); object-fit: cover; aspect-ratio: 4/3; transition: 0.3s; }
        .img-gallery img:hover { transform: scale(1.02); }
        .news-card { background: white; border-radius: 18px; padding: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.04); border-left: 4px solid #0d9488; margin-bottom: 20px; transition: 0.3s; }
        .news-card:hover { border-left-color: #0c4a6e; transform: translateX(4px); }
        .news-date { font-size: 0.85rem; color: #6b8a9a; margin-bottom: 8px; display: block; }
        .news-card h3 { font-size: 1.2rem; color: #0c4a6e; margin-bottom: 10px; }
        .news-card p { font-size: 0.98rem; line-height: 1.7; color: #2c3e50; }
        .faq-item { background: white; border-radius: 16px; padding: 24px 28px; margin-bottom: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.03); border: 1px solid rgba(12,74,110,0.06); }
        .faq-item h4 { font-size: 1.1rem; color: #0c4a6e; margin-bottom: 10px; }
        .faq-item p { font-size: 0.98rem; line-height: 1.8; color: #2c3e50; }
        .cta-section { background: linear-gradient(135deg, #0c4a6e 0%, #0d9488 100%); border-radius: 24px; padding: 60px 40px; text-align: center; color: white; margin: 40px 0; }
        .cta-section h2 { font-size: 2.2rem; margin-bottom: 16px; }
        .cta-section p { font-size: 1.1rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }
        .btn-ghost { display: inline-block; margin-top: 24px; padding: 12px 36px; border: 2px solid white; border-radius: 50px; color: white; text-decoration: none; font-weight: 600; transition: 0.3s; }
        .btn-ghost:hover { background: white; color: #0c4a6e; }
        footer { background: #0b2b3f; color: rgba(255,255,255,0.7); padding: 40px 0 20px; margin-top: 60px; font-size: 0.9rem; }
        footer a { color: rgba(255,255,255,0.75); text-decoration: none; transition: 0.2s; }
        footer a:hover { color: white; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; margin: 20px 0; }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.85rem; }
        @media (max-width: 768px) { .hero-content h1 { font-size: 2rem; } .nav-links { justify-content: center; gap: 10px; } .nav-links a { font-size: 0.85rem; padding: 4px 12px; } }