:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #16202a;
  --muted: #5f6b76;
  --line: #dbe3ec;
  --accent: #1d4f91;
  --accent-dark: #153a69;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --max-width: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, #0f2744, #1d4f91);
  color: white;
  padding: 90px 0 80px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 18px;
}

.lead {
  font-size: 1.1rem;
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #eef3f8;
}

h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 18px;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.card {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.checklist {
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 10px;
}

.contact-box {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.button {
  display: inline-block;
  background: white;
  color: var(--accent-dark);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: bold;
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.section .button {
  background: var(--accent);
  color: white;
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
}
