:root {
  --green: #2f5233;
  --green-light: #e2f0d9;
  --bg: #fbfaf7;
  --text: #232323;
  --muted: #5c5c5c;
  --border: #dcd8cf;
}
* { box-sizing: border-box; }
body {
  font: 16px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
}
header.site {
  background: var(--green);
  color: #fff;
  padding: 18px 20px;
}
header.site .wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
header.site a { color: #fff; text-decoration: none; }
header.site .brand { font-weight: 700; font-size: 1.2em; }
nav.site a { margin-left: 18px; font-size: 0.95em; opacity: 0.9; }
nav.site a:hover { text-decoration: underline; }
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
h1 { font-size: 1.8em; margin-top: 0; }
h2 { font-size: 1.3em; margin-top: 2em; color: var(--green); }
.lead { font-size: 1.1em; color: var(--muted); }
.badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.85em;
  font-weight: 600;
}
.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 18px 0;
  background: #fff;
}
.card h3 { margin-top: 0; }
.price { font-size: 1.3em; font-weight: 700; color: var(--green); }
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 10px;
}
.btn.disabled {
  background: #b7b7b7;
  cursor: not-allowed;
}
.btn.secondary {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
}
table.check {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  font-size: 0.95em;
}
table.check th, table.check td {
  border: 1px solid var(--border);
  padding: 7px 9px;
  text-align: left;
  vertical-align: top;
}
table.check th { background: var(--green-light); }
table.check td.small { width: 60px; text-align: center; }
footer.site {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 22px 20px;
  text-align: center;
  font-size: 0.9em;
  color: var(--muted);
}
footer.site a { color: var(--muted); }
.notice {
  background: #fff7e6;
  border: 1px solid #f0d8a8;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.92em;
  margin: 18px 0;
}
@media print {
  header.site, footer.site, .no-print { display: none; }
  main { max-width: 100%; }
}
