:root {
  --navy: #0b1f33;
  --blue: #1f5f8b;
  --green: #28a745;
  --light: #f5f8fb;
  --white: #ffffff;
  --text: #1f2933;
  --muted: #5f6b7a;
  --border: #d9e2ec;
}

* {
  box-sizing: border-box;
}

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

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

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.logo span {
  color: var(--green);
}

.logo-image-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  display: block;
  height: 42px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.logo-image-link:hover {
  text-decoration: none;
}

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

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
}

.hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 72px 24px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-eyebrow {
  color: #b7e4c7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 900px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 780px;
  margin-bottom: 28px;
}

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

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

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

.button-secondary {
  background: var(--white);
  color: var(--navy);
}

.button:hover {
  text-decoration: none;
  opacity: 0.92;
}

.section {
  padding: 56px 24px;
}

.section-light {
  background: var(--light);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--navy);
}

.section h3 {
  color: var(--navy);
  margin-top: 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 850px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.06);
}

.card-green {
  border-top: 5px solid var(--green);
}

.card-blue {
  border-top: 5px solid var(--blue);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 700;
}

.warning-box {
  background: #fff8e6;
  border: 1px solid #f1d18a;
  border-radius: 12px;
  padding: 22px;
  margin-top: 24px;
}

.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 56px 24px;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.footer {
  background: #071827;
  color: var(--white);
  padding: 28px 24px;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer a {
  color: #b7e4c7;
}

@media (max-width: 800px) {
  .nav-container {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding: 56px 20px;
  }
}
