:root {
  --bg: #f7f6f2;
  --panel: #ffffff;
  --text: #1f2328;
  --muted: #667085;
  --line: #d8dde3;
  --accent: #2f6f4f;
  --accent-2: #e8f4ec;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-topbar {
  background: #234f38;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.site-topbar .inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.site-topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.site-topbar a:hover {
  text-decoration: underline;
}

.brand-link {
  margin-right: auto;
  white-space: nowrap;
}

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

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(180deg, rgba(47,111,79,0.88), rgba(47,111,79,0.72)),
    radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 35%);
  color: #fff;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 10px;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
}

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

.hero p {
  color: #fff;
}

.panel,
.card,
.page-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.page-shell {
  padding: 24px;
}

.section {
  margin-top: 28px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0 0 6px;
  font-size: 28px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background: #fff;
  color: #1d3f2d;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
}

.muted {
  color: var(--muted);
}

.footer-note {
  margin-top: 18px;
  padding: 0 4px 10px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-topbar .inner,
  .content-page {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-link {
    margin-right: 0;
    width: 100%;
  }

  .hero {
    padding: 24px 20px;
    border-radius: 18px;
  }

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

@media print {
  .site-topbar,
  .breadcrumbs,
  .footer-note {
    display: none !important;
  }

  body {
    background: #fff;
    font-size: 11pt;
  }

  .content-page {
    max-width: none;
    padding: 0;
  }

  .page-shell,
  .panel,
  .card {
    box-shadow: none;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}
