:root {
  --ink: #12231f;
  --soft: #4b5d56;
  --paper: #fffdf8;
  --cream: #f5f0e6;
  --green: #125844;
  --mint: #d9efe5;
  --coral: #d7634f;
  --border: rgba(18, 35, 31, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* { box-sizing: border-box; }
body { margin: 0; background: radial-gradient(circle at 92% 2%, var(--mint), transparent 32rem), var(--paper); }
a { color: var(--green); }
.page-header, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.page-header { min-height: 82px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand img { border-radius: 12px; }
.start, .cta a { display: inline-flex; min-height: 44px; align-items: center; border-radius: 12px; padding: 10px 16px; background: var(--green); color: white; font-weight: 750; text-decoration: none; }
main { padding-block: 42px 72px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; color: var(--soft); font-size: 13px; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.eyebrow { margin: 0 0 14px; color: var(--coral); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 900px; margin: 0 0 24px; font-size: clamp(42px, 6vw, 70px); line-height: 1.02; }
h2 { margin-bottom: 12px; font-size: clamp(28px, 3vw, 40px); }
p { color: var(--soft); font-size: 17px; line-height: 1.68; }
.answer { max-width: 900px; border-left: 4px solid var(--green); padding-left: 20px; color: var(--ink); font-size: clamp(19px, 2vw, 24px); line-height: 1.55; }
section { max-width: 900px; margin-top: 46px; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 34px; }
.card { min-height: 150px; display: grid; align-content: start; gap: 12px; border: 1px solid var(--border); border-radius: 20px; padding: 24px; background: rgba(255,255,255,.72); color: var(--ink); text-decoration: none; transition: transform 160ms ease, border-color 160ms ease; }
.card:hover { transform: translateY(-3px); border-color: var(--green); }
.card strong { font-family: Georgia, "Times New Roman", serif; font-size: 24px; font-weight: 500; }
.card span { color: var(--soft); line-height: 1.55; }
.steps { display: grid; gap: 12px; padding-left: 24px; font-size: 17px; line-height: 1.6; }
.limit { border: 1px solid rgba(215,99,79,.3); border-radius: 20px; padding: 10px 24px 20px; background: rgba(215,99,79,.06); }
.source { display: inline-flex; margin-top: 8px; font-weight: 700; }
.cta { max-width: none; margin-top: 64px; border-radius: 24px; padding: 28px; background: var(--green); color: white; }
.cta strong { font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 500; }
.cta p { max-width: 720px; margin-block: 10px 18px; color: rgba(255,255,255,.78); }
.cta a { background: white; color: var(--green); }
footer { min-height: 90px; display: flex; align-items: center; gap: 20px; border-top: 1px solid var(--border); color: var(--soft); font-size: 13px; }
footer span { margin-right: auto; }
@media (max-width: 680px) {
  .page-header, main, footer { width: min(100% - 28px, 1120px); }
  main { padding-top: 28px; }
  .breadcrumbs { margin-bottom: 30px; }
  .card-grid { grid-template-columns: 1fr; }
  footer { align-items: flex-start; flex-direction: column; padding-block: 24px; }
  footer span { margin: 0; }
}
