:root { --primary: #0d1b2a; --secondary: #1b263b; --accent: #3498db; --bg: #f8f9fa; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background-color: var(--bg); color: #333; line-height: 1.6; }
a { color: var(--accent); }
.site-header { background: var(--primary); color: white; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; flex-wrap: wrap; gap: 10px; }
.logo { font-size: 22px; font-weight: 900; color: white; text-decoration: none; display: flex; align-items: center; gap: 10px; letter-spacing: 0.5px; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: white; text-decoration: none; font-weight: 600; font-size: 14px; }
.site-nav a:hover, .site-nav a.active { color: var(--accent); }
.hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 90px 20px 110px; text-align: center; }
.hero h1 { font-size: 42px; margin: 0 0 12px; font-weight: 900; letter-spacing: -0.5px; }
.hero p { font-size: 17px; opacity: 0.85; max-width: 720px; margin: 0 auto; }
.hero-mini { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 60px 20px 80px; text-align: center; }
.hero-mini h1 { font-size: 36px; margin: 0 0 8px; }
.container { max-width: 1200px; margin: -50px auto 60px; padding: 0 20px; position: relative; }
.container-narrow { max-width: 900px; margin: -40px auto 60px; padding: 0 20px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.grid-sm { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.card { background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease; }
.card:hover { transform: translateY(-6px); }
.card img { width: 100%; height: 200px; object-fit: cover; background: #e5e7eb; display: block; }
.card-body { padding: 22px; }
.card-body h3 { margin: 12px 0 8px; color: var(--primary); font-size: 18px; }
.card-meta { color: #666; font-size: 13px; margin: 0; }
.badge { background: #e3f2fd; color: #1565c0; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; }
.s-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: 1px solid #eee; }
.s-card img { width: 100%; height: 160px; object-fit: cover; background: #e5e7eb; display: block; }
.s-info { padding: 14px 16px; }
.s-info h4 { margin: 0 0 6px; color: var(--primary); font-size: 15px; }
.s-info p { font-size: 12px; color: #777; margin: 0; }
.content-card { background: white; padding: 48px; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.content-card h2 { color: var(--primary); margin-top: 0; }
.content-card h3 { color: var(--primary); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.stat-item { text-align: center; padding: 22px 12px; border: 1px solid #eee; border-radius: 10px; }
.stat-item h2 { color: var(--primary); margin: 0 0 6px; font-size: 28px; }
.stat-item p { margin: 0; font-size: 13px; color: #666; }
.site-footer { background: var(--primary); color: #778da9; padding: 50px 20px; text-align: center; }
.site-footer a { color: #778da9; margin: 0 10px; text-decoration: none; font-size: 13px; }
.site-footer a:hover { color: var(--accent); }
.copyright { margin-top: 18px; font-size: 11px; opacity: 0.8; }
.card-link { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.card-cta { display: inline-block; margin-top: 14px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: 0.3px; }
.s-card.card-link .card-cta { margin-top: 8px; font-size: 12px; }
.hero-detail { background-size: cover; background-position: center; color: white; padding: 90px 20px 70px; text-align: center; }
.hero-detail h1 { font-size: 36px; margin: 14px 0 10px; font-weight: 900; }
.hero-detail p { opacity: 0.92; margin: 0; font-size: 15px; }
.badge-light { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.3); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin: 22px 0 10px; }
.info-block { border: 1px solid #eee; background: #fafbfc; border-radius: 10px; padding: 16px 18px; }
.info-block h3 { margin: 0 0 8px; font-size: 14px; color: var(--primary); text-transform: uppercase; letter-spacing: 0.5px; }
.info-label { margin: 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: #888; }
.info-value { margin: 6px 0 0; font-size: 16px; font-weight: 700; color: var(--primary); }
.form-row { display: inline-flex; gap: 6px; }
.form-dot { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; font-size: 11px; font-weight: 800; color: white; }
.form-w { background: #2e9e5f; } .form-d { background: #b8b8b8; } .form-l { background: #d64545; }
.h2h-list { list-style: none; padding: 0; margin: 10px 0 26px; border-top: 1px solid #eee; }
.h2h-list li { display: flex; justify-content: space-between; align-items: center; padding: 12px 4px; border-bottom: 1px solid #eee; font-size: 14px; }
.facts-list { padding-left: 20px; margin: 8px 0 0; }
.facts-list li { padding: 4px 0; color: #444; }
@media (max-width: 640px) { .hero h1 { font-size: 30px; } .content-card { padding: 28px; } .stat-grid { grid-template-columns: 1fr; } .site-nav { gap: 10px; } .site-nav a { font-size: 12px; } .logo { font-size: 18px; } }
