h1 { margin: 0 0 12px; font-size: clamp(2.1rem, 4.8vw, 3rem); color: var(--lv-ink); text-align: center; line-height: 1.06; }
h2 { margin: 0 0 12px; font-size: 1.35rem; color: var(--lv-ink); line-height: 1.2; }
.title-with-icon { display: inline-flex; align-items: center; gap: 8px; }
.title-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: var(--lv-muted);
  flex: 0 0 22px;
}
.title-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.subheading { font-size: 1.14rem; margin-top: 18px; }
p { color: var(--lv-muted); line-height: 1.62; margin: 0 0 12px; font-size: 1rem; }
.info-row { margin-bottom: 10px; color: var(--lv-muted); line-height: 1.62; font-size: 1rem; }
.label { color: var(--lv-ink); font-weight: 700; }
ul { margin: 0; padding-left: 20px; color: var(--lv-muted); line-height: 1.62; }
li { margin-bottom: 8px; font-size: 1rem; }
.note { margin-top: 16px; }
.tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.tab-btn {
  border: 1px solid var(--lv-stone);
  background: #faf7f1;
  color: var(--lv-ink-soft);
  border-radius: var(--lv-radius-control);
  padding: 14px 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
  box-shadow: 0 6px 14px rgba(61, 53, 40, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.tab-btn.active {
  background: var(--lv-forest);
  color: #fffdf8;
  border-color: var(--lv-forest);
  box-shadow: 0 12px 20px rgba(63, 75, 51, 0.22);
  transform: translateY(-1px);
}
.tab-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(61, 53, 40, 0.12);
}
.tab-title {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
@media (max-width: 700px) {
  h2 { font-size: 1.24rem; }
  .subheading { font-size: 1.08rem; }
}
@media (max-width: 560px) {
  .tabs { grid-template-columns: 1fr; }
  .tab-btn { width: 100%; }
}
