:root {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #183018;
  background: #f7faf5;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header,
main,
footer {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dce8d8;
}
nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
a {
  color: #176d20;
}
main {
  padding-top: 48px;
  padding-bottom: 64px;
}
.crumbs {
  font-size: 0.9rem;
  color: #607060;
}
.eyebrow {
  color: #287c0b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.1;
  max-width: 850px;
}
h2 {
  margin-top: 40px;
  line-height: 1.2;
}
.lead {
  font-size: 1.2rem;
  max-width: 800px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid #dce8d8;
  border-radius: 12px;
  padding: 20px;
}
.cta {
  background: #183018;
  color: #fff;
  border-radius: 14px;
  padding: 28px;
  margin-top: 40px;
}
.cta a {
  color: #fff;
}
.notice {
  border-left: 4px solid #e6a51e;
  padding: 12px 16px;
  background: #fff9e9;
}
.faq dt {
  font-weight: 700;
  margin-top: 20px;
}
.faq dd {
  margin: 4px 0 0;
}
.logo {
  font-weight: 800;
  text-decoration: none;
  color: #183018;
}
footer {
  border-top: 1px solid #dce8d8;
  font-size: 0.9rem;
  color: #607060;
}
