/* Plain, readable layout for the informational pages. */
:root {
  --page: #f5f7f4;
  --text: #1d2a22;
  --muted: #5d6b62;
  --green: #4f8a3c;
  --panel: #ffffff;
  --panel-soft: #ffffff;
  --line: #d8e0d9;
}

html,
body {
  background: var(--page);
}

body {
  color: var(--text);
  background-image: none;
}

a {
  color: #39742c;
}

.info-shell {
  width: min(100% - 32px, 920px);
  padding: 24px 0 42px;
}

.info-nav,
.info-footer {
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.info-nav {
  min-height: 60px;
  border-radius: 12px;
}

.brand {
  color: var(--text);
}

.brand-mark {
  border-color: #cfe0d0;
  background: #eff7ed;
}

.brand-mark svg {
  color: #4d913b;
  fill: rgba(77, 145, 59, 0.16);
}

.nav-links a,
.info-cta {
  color: #425048;
  background: transparent;
}

.nav-links a:hover {
  background: #edf4eb;
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.info-cta {
  color: #24541d;
  background: #e4f2df;
}

.info-hero {
  padding: 48px 0 26px;
}

.info-hero h1 {
  max-width: 720px;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.info-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 10px !important;
  color: #4d843b !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 20px;
  padding: 0 16px;
  border-radius: 9px;
  color: #fff;
  background: #4f8a3c;
  font-weight: 750;
}

.primary-link:hover {
  background: #3e742e;
  text-decoration: none;
}

.info-card {
  gap: 0;
  padding: clamp(22px, 4vw, 34px);
  border-color: var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(30, 48, 37, 0.05);
}

.info-card .section {
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid #e3e9e3;
  border-radius: 0;
  background: transparent;
}

.info-card .section:first-child {
  padding-top: 0;
}

.info-card .section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.section h2,
.section h3 {
  color: var(--text);
  font-size: 1.12rem;
}

.section p,
.section li,
.localized-section-body {
  color: var(--muted);
  line-height: 1.72;
}

.legal-summary {
  margin-bottom: 4px;
}

.legal-summary .section {
  min-height: 100%;
  padding: 18px;
  border: 1px solid #dfe8df;
  border-radius: 10px;
  background: #f8fbf7;
}

.legal-summary .section:last-child {
  padding-bottom: 18px;
}

.info-footer {
  margin-top: 18px;
  border-radius: 12px;
  color: var(--muted);
}

.info-footer-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-footer a {
  color: #4c5a51;
}

@media (max-width: 720px) {
  .info-shell {
    width: min(100% - 22px, 920px);
    padding-top: 12px;
  }

  .info-hero {
    padding: 36px 0 20px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card .section {
    padding: 20px 0;
  }
}
