:root {
  --green: #1a7a4a;
  --green-dark: #135c37;
  --green-light: #e8f5ee;
  --text: #0a0a0a;
  --muted: #4b5563;
  --border: #e5e7eb;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}
a { color: var(--green); text-decoration: underline; }
a:hover { color: var(--green-dark); }

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

header {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
}

main { padding: 2.5rem 0 3rem; }

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.intro {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.intro p + p { margin-top: 0.875rem; }

section {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-bottom: 2rem;
}
h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.callout {
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9375rem;
}
.cta-link {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  margin-top: 0.75rem;
  transition: background 0.15s;
}
.cta-link:hover { background: var(--green-dark); color: #fff; }

.closing {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
