:root {
  --ink: #12211f;
  --deep: #0e2f2c;
  --sand: #f4f0e6;
  --card: #fffdf8;
  --lime: #d6ef6a;
  --line: #d9d2c3;
  --muted: #5d675f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", "Microsoft YaHei", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}
a { color: #0f5c50; }
.mast {
  background: var(--deep);
  color: #f4f0e6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 6vw;
}
.brand { color: var(--lime); text-decoration: none; font-weight: 800; font-size: 22px; letter-spacing: 0.04em; }
.mast nav { display: flex; gap: 8px; flex-wrap: wrap; }
.mast nav a {
  color: #f4f0e6;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
}
.mast nav a.on { background: var(--lime); color: #10211a; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 28px 22px 64px; }
.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: start;
}
h1 { font-size: 36px; line-height: 1.25; margin: 0 0 12px; letter-spacing: -0.02em; }
.panel {
  background: var(--deep);
  color: #f7f3ea;
  padding: 18px 18px 8px;
  border-radius: 18px;
}
.panel p, .panel li { color: #f7f3ea; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }
.btn {
  background: var(--lime);
  color: #12211a;
  text-decoration: none;
  font-weight: 750;
  padding: 11px 16px;
  border-radius: 999px;
}
.btn.alt { background: transparent; color: var(--deep); box-shadow: inset 0 0 0 1.5px var(--deep); }
.panel .btn.alt { color: var(--lime); box-shadow: inset 0 0 0 1.5px var(--lime); }
.board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.tile, .news-item, .faq-item {
  background: var(--card);
  border-radius: 16px;
  padding: 14px 16px 4px;
  box-shadow: 0 1px 0 rgba(18,33,31,0.06);
}
h2 { font-size: 26px; margin: 28px 0 10px; }
h3 { margin: 0 0 6px; font-size: 18px; }
.band {
  margin-top: 26px;
  background: #e7f0df;
  border-radius: 22px;
  padding: 8px 22px 18px;
}
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; }
table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 12px; overflow: hidden; }
th, td { border-bottom: 1px solid var(--line); text-align: left; padding: 10px 12px; vertical-align: top; }
th { background: #e7efe4; }
ol.steps { padding-left: 20px; }
ol.steps li { margin: 10px 0; }
.site-foot { color: var(--muted); font-size: 14px; margin-top: 36px; }
time { color: var(--muted); font-size: 14px; }
svg { vertical-align: -3px; }
@media (max-width: 900px) {
  .split, .board, .cols { grid-template-columns: 1fr; }
  .mast { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 30px; }
}
