:root {
  color-scheme: light;
  --page: #f7faf6;
  --surface: #ffffff;
  --ink: #17231c;
  --muted: #5c6a61;
  --line: #dce6de;
  --green: #006b3f;
  --green-strong: #005332;
  --mint: #e7f4ec;
  --amber: #b76d00;
  --shadow: 0 18px 45px rgba(13, 36, 24, 0.10);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(231, 244, 236, 0.78) 0, rgba(247, 250, 246, 0) 360px),
    var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--green);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-strong);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  width: 82px;
  height: 66px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--green);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 107, 63, 0.18);
}

.button:hover {
  background: var(--green-strong);
  color: #ffffff;
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 24px 72px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: end;
  padding: 30px 0 42px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 3rem;
}

.lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #2f3c34;
  font-size: 1.16rem;
}

.updated {
  display: inline-flex;
  margin: 26px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(0, 107, 63, 0.20);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-strong);
  font-weight: 800;
}

.summary {
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 22px;
}

.summary h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.summary ul {
  margin: 0;
  padding-left: 20px;
}

.summary li + li {
  margin-top: 10px;
}

.content-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-top: 38px;
}

.toc {
  position: sticky;
  top: 18px;
  border-left: 3px solid var(--green);
  padding: 6px 0 8px 18px;
}

.toc h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.toc nav {
  display: grid;
  gap: 8px;
}

.toc a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.toc a:hover {
  color: var(--green);
}

.policy-document {
  min-width: 0;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 44px;
}

.policy-document section {
  scroll-margin-top: 20px;
}

.policy-document section + section {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.policy-document h2 {
  margin: 0 0 18px;
  color: var(--green-strong);
  font-size: 1.65rem;
}

.policy-document h3 {
  margin: 28px 0 10px;
  color: #25392d;
  font-size: 1.08rem;
}

.policy-document p {
  margin: 0 0 16px;
}

.policy-document ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.policy-document li + li {
  margin-top: 7px;
}

.policy-document li::marker {
  color: var(--amber);
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--mint);
  color: var(--green-strong);
  font-size: 0.9rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.contact-list strong {
  color: #25392d;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero,
  .content-shell {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    border: 1px solid var(--line);
    border-left: 3px solid var(--green);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.76);
    padding: 18px;
  }

  .toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    justify-content: flex-start;
  }

  h1 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 1.04rem;
  }

  .policy-document {
    padding: 26px 20px;
  }

  .toc nav {
    grid-template-columns: 1fr;
  }
}
