* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; line-height: 1.6; }
a { color: #1a365d; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.header { background: #1a365d; color: #fff; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.header .logo { font-size: 1.4rem; font-weight: 700; color: #fff; }
.header .logo:hover { text-decoration: none; }
.header nav a { color: #cbd5e0; margin-left: 1.5rem; font-size: 0.9rem; }
.header nav a:hover { color: #fff; text-decoration: none; }

/* Hero */
.hero { background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 50%, #3b82f6 100%); color: #fff; text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255,255,255,0.08) 0%, transparent 40%); }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; position: relative; }
.hero p { font-size: 1.15rem; max-width: 650px; margin: 0 auto 2rem; opacity: 0.9; position: relative; }
.hero-badges { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; }
.hero-badge { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); border-radius: 2rem; padding: 0.5rem 1.5rem; font-size: 0.9rem; }

/* Highlights */
.highlights { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.highlights h2 { font-size: 1.8rem; color: #1a365d; margin-bottom: 0.5rem; }
.highlights > p { color: #666; margin-bottom: 3rem; }
.cards { display: flex; justify-content: center; gap: 2rem; }
.card { text-align: center; flex: 1; padding: 2.5rem 1.5rem; border-radius: 12px; background: #f7fafc; border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.card svg { margin-bottom: 1rem; }
.card .number { font-size: 2.2rem; font-weight: 700; color: #1a365d; }
.card .label { margin-top: 0.5rem; color: #666; }

/* Services section */
.services { background: #f7fafc; padding: 5rem 2rem; }
.services-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.services h2 { font-size: 1.8rem; color: #1a365d; margin-bottom: 0.5rem; }
.services > .services-inner > p { color: #666; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.service-item { background: #fff; padding: 2rem 1.5rem; border-radius: 12px; border: 1px solid #e2e8f0; text-align: left; }
.service-item svg { margin-bottom: 1rem; }
.service-item h3 { font-size: 1.1rem; color: #1a365d; margin-bottom: 0.5rem; }
.service-item p { font-size: 0.9rem; color: #666; }

/* Destinations */
.destinations { padding: 5rem 2rem; text-align: center; }
.destinations h2 { font-size: 1.8rem; color: #1a365d; margin-bottom: 0.5rem; }
.destinations > p { color: #666; margin-bottom: 2.5rem; }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1000px; margin: 0 auto; }
.dest-card { display: flex; flex-direction: column; align-items: center; padding: 1.5rem 1rem; border-radius: 10px; border: 1px solid #e2e8f0; background: #fff; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: #333; }
.dest-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); text-decoration: none; }
.dest-flag { font-size: 2.2rem; margin-bottom: 0.5rem; }
.dest-name { font-weight: 600; color: #1a365d; font-size: 1rem; margin-bottom: 0.3rem; }
.dest-desc { font-size: 0.78rem; color: #888; text-align: center; line-height: 1.4; }
.dest-btn { display: inline-block; margin-top: 2rem; padding: 0.7rem 2.5rem; background: #1a365d; color: #fff; border-radius: 6px; font-size: 0.95rem; font-weight: 500; transition: background 0.2s, transform 0.2s; }
.dest-btn:hover { background: #2a4a7f; text-decoration: none; color: #fff; transform: translateY(-2px); }

/* Partners banner */
.partners { padding: 5rem 2rem; text-align: center; background: #fff; }
.partners h2 { font-size: 1.8rem; color: #1a365d; margin-bottom: 0.5rem; }
.partners > p { color: #666; margin-bottom: 0; }
.partners-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.partner-img { max-width: 600px; width: 100%; height: auto; transition: opacity 0.2s; }
.partner-btn { display: inline-block; padding: 0.7rem 2.5rem; background: #1a365d; color: #fff; border-radius: 6px; font-size: 0.95rem; font-weight: 500; transition: background 0.2s, transform 0.2s; }
.partner-btn:hover { background: #2a4a7f; text-decoration: none; color: #fff; transform: translateY(-2px); }

/* CTA */
.cta { background: linear-gradient(135deg, #1a365d, #2a4a7f); color: #fff; text-align: center; padding: 4rem 2rem; }
.cta h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.cta p { opacity: 0.9; max-width: 500px; margin: 0 auto; }

/* Content (legal pages, about) */
.content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.content h1 { font-size: 2rem; color: #1a365d; margin-bottom: 1.5rem; }
.content h2 { font-size: 1.3rem; color: #1a365d; margin: 2rem 0 0.8rem; }
.content p { margin-bottom: 1rem; }
.content ul, .content ol { margin: 0.5rem 0 1rem 1.5rem; }
.content table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.content th, .content td { border: 1px solid #ddd; padding: 0.6rem; text-align: left; vertical-align: top; font-size: 0.9rem; }
.content th { background: #f7fafc; font-weight: 600; }

/* Footer */
.footer { background: #1a365d; color: #cbd5e0; text-align: center; padding: 2rem; font-size: 0.85rem; }
.footer nav { margin-bottom: 0.8rem; }
.footer nav a { color: #cbd5e0; margin: 0 0.8rem; }
.footer nav a:hover { color: #fff; }
.footer-contact { margin-bottom: 0.5rem; font-size: 0.82rem; }

/* Responsive */
@media (max-width: 768px) {
  .header { flex-direction: column; gap: 0.8rem; }
  .header nav a { margin-left: 0; margin-right: 1rem; }
  .hero { padding: 4rem 1.5rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-badges { gap: 0.8rem; }
  .cards { flex-direction: column; gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-img { max-width: 100%; }
}
