:root {
  --brand: #2d5a27;
  --bg: #f9f9fb;
  --text: #333;
  --muted: #666;
}
* { box-sizing: border-box; }
body {
  font-family: 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  margin: 0;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}
header {
  background: #fff;
  padding: 18px 5%;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 2;
}
header a { color: var(--brand); text-decoration: none; font-weight: 800; }

.legal-header {
  padding: 0;
}
.legal-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 5%;
}
.legal-back {
  font-weight: 800;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lang-switcher__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.lang-select {
  min-height: 40px;
  padding: 6px 32px 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  max-width: 100%;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
main { max-width: 880px; margin: 0 auto; padding: 28px 5% 80px; }
h1 { font-size: 1.8rem; color: var(--brand); margin: 0 0 8px; }
.meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 28px; }
h2 { font-size: 1.15rem; margin-top: 1.6em; color: #1a1a1a; }
p, li { margin: 0.6em 0; }
ol { padding-left: 1.2em; }
footer {
  background: #333;
  color: #ccc;
  padding: 28px 5%;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: #aaa; }
