:root {
  --primary: #2c5282;
  --primary-dark: #1e3a5f;
  --accent: #d4a84b;
  --light: #f8fafc;
  --dark: #1e3a5f;
  --gray: #6b7280;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(13,27,42,0.1);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #334155; background: var(--white); line-height: 1.7; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* Navigation */
nav { background: var(--primary-dark); padding: 12px 24px; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 20px; }
.logo-icon { width: 44px; height: 44px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: var(--primary-dark); }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.88); padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.15); color: var(--white); }
.nav-cta { background: var(--accent) !important; color: var(--primary-dark) !important; font-weight: 700 !important; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a::after { content: " ▼"; font-size: 10px; opacity: 0.7; }
.dropdown-content {
  display: none; position: absolute; top: 100%; left: 0; background: var(--primary-dark); min-width: 260px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25); border-radius: 8px; padding: 8px 0; list-style: none; z-index: 1000;
}
.dropdown-content a { display: block; padding: 10px 18px; color: rgba(255,255,255,0.9); font-size: 14px; }
.dropdown-content a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.dropdown:hover .dropdown-content { display: block; }

.lang-switcher { display: flex; align-items: center; gap: 12px; margin-left: 16px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,0.2); }
.lang-switcher a { font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: 6px; color: rgba(255,255,255,0.8); transition: var(--transition); }
.lang-switcher a.active { background: rgba(255,255,255,0.25); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 24px; text-align: center; color: var(--white); }
.hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 16px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero p { font-size: 18px; opacity: 0.92; max-width: 800px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { background: var(--light); padding: 12px 0; border-bottom: 1px solid rgba(26,60,110,0.08); }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; font-size: 13px; color: var(--gray); }
.breadcrumb-inner a { color: var(--primary); }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { margin: 0 8px; }

/* Content */
.container { max-width: 1100px; margin: 0 auto; padding: 60px 24px; }
.content-section { background: var(--white); }
.content-section h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 24px; text-align: center; }

.geo-table { width: 100%; border-collapse: collapse; margin: 24px 0; box-shadow: var(--shadow); border-radius: 12px; overflow: hidden; }
.geo-table thead { background: var(--primary); color: var(--white); }
.geo-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 14px; }
.geo-table td { padding: 14px 16px; border-bottom: 1px solid #e2e8f0; font-size: 14px; color: #475569; }
.geo-table tbody tr:nth-child(even) { background: #f8fafc; }
.geo-table tbody tr:hover { background: #f1f5f9; }

.faq-section-page { background: var(--light); }
.faq-section-page h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 32px; text-align: center; }
.faq-list { display: grid; gap: 16px; max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 12px; box-shadow: var(--shadow); border: 1px solid #e2e8f0; overflow: hidden; }
.faq-question { padding: 20px 24px; font-weight: 700; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { padding: 0 24px 20px; color: #475569; line-height: 1.7; }
.faq-answer a { color: var(--primary); text-decoration: underline; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 80px 24px; text-align: center; color: var(--white); }
.cta-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; }
.cta-section p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-btn { display: inline-block; background: var(--accent); color: var(--primary-dark); padding: 16px 40px; border-radius: 8px; font-weight: 700; font-size: 16px; transition: var(--transition); }
.cta-btn:hover { background: #e4c77a; transform: translateY(-2px); }

/* Footer */
footer { background: var(--primary-dark); color: var(--white); padding: 60px 24px 24px; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-section h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-section p, .footer-section li { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 12px; }
.footer-section a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-section a:hover { color: var(--accent); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 14px; color: rgba(255,255,255,0.7); }

/* Mobile */
@media (max-width: 1024px) { .footer-content { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .content-section h2, .faq-section-page h2 { font-size: 24px; }
  .geo-table th, .geo-table td { padding: 12px; font-size: 13px; }
  .footer-content { grid-template-columns: 1fr; }
  .dropdown:hover .dropdown-content { position: static; box-shadow: none; }
}
