:root {
  --bg: #f3f6fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --brand: #1d4ed8;
  --brand-dark: #1e3a8a;
  --line: #dbe7ff;
  --accent: #10b981;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --font-heading: "Merriweather", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, #dbeafe 0%, #eff6ff 40%, var(--bg) 100%);
  line-height: 1.65;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--brand-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero h1,
section h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: #0b1d44;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.hero-media {
  background: linear-gradient(135deg, #1d4ed8, #0f766e);
  border-radius: 14px;
  overflow: hidden;
  min-height: 260px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-secondary {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: #eff6ff;
}

.grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  color: #102f71;
}

.card p,
.card li {
  color: #334155;
}

section {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

ul {
  padding-left: 20px;
}

.faq-item {
  padding: 14px 0;
  border-bottom: 1px dashed #cbd5e1;
}

.faq-item:last-child {
  border-bottom: 0;
}

.page-links {
  margin-top: 22px;
  padding: 16px;
  background: #eef4ff;
  border-radius: 12px;
  border: 1px solid #d3e3ff;
  font-size: 14px;
}

.page-links ul {
  margin: 10px 0 0;
}

.footer {
  margin-top: 20px;
  font-size: 14px;
  color: #475569;
  text-align: center;
}

@media (max-width: 980px) {
  .hero,
  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 22px;
  }

  .hero p {
    font-size: 16px;
  }
}
