:root {
  --bg: #f5f7fb;
  --text: #172033;
  --muted: #5f6c80;
  --card: #ffffff;
  --primary: #0f4c81;
  --primary-dark: #0a355b;
  --accent: #d9eafa;
  --border: #d8e0ec;
  --shadow: 0 18px 45px rgba(15, 76, 129, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--primary);
}

.hero {
  min-height: 640px;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.92), rgba(12, 31, 56, 0.95)),
    radial-gradient(circle at top right, rgba(217, 234, 250, 0.35), transparent 35%);
  color: white;
  padding: 24px;
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.navlinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.navlinks a {
  color: white;
  text-decoration: none;
  opacity: 0.92;
  font-weight: 600;
}

.navlinks a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero-content {
  max-width: 980px;
  margin: 130px auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
  color: #8ec6f2;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  max-width: 900px;
  margin: 0 0 24px;
}

.lead {
  font-size: 1.25rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: white;
  color: var(--primary-dark);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,0.55);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card, .highlight-box, .contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.highlight-box ul {
  margin-bottom: 0;
}

.contact {
  padding-top: 40px;
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-details {
  background: var(--bg);
  border-radius: 18px;
  padding: 16px;
  margin: 24px 0;
}

.small, .notice {
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 28px 24px 42px;
  color: var(--muted);
}

.subpage {
  background: white;
}

.page-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 24px 12px;
}

.page-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin: 20px 0 0;
}

.backlink {
  text-decoration: none;
  font-weight: 700;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 24px 80px;
}

.legal h2 {
  margin-top: 34px;
  color: var(--primary-dark);
}

.notice {
  margin-top: 38px;
  padding: 18px;
  background: var(--bg);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
}

@media (max-width: 850px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-content {
    margin-top: 80px;
  }

  .grid, .split {
    grid-template-columns: 1fr;
  }
}
