:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5f5f5f;
  --accent: #b78b4a;
  --surface: #f7f6f4;
  --border: #e8e6e2;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1024px, 92vw);
  margin: 0 auto;
}

header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
}

.topbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.menu {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.menu a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

main {
  padding: 40px 0 56px;
}

.content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h2 {
  margin-top: 26px;
  font-size: 1.3rem;
}

h3 {
  margin-top: 16px;
  font-size: 1.05rem;
}

p {
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

.legal-text {
  white-space: pre-wrap;
  font-size: 15px;
  margin-top: 20px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 20px 0 30px;
  color: var(--muted);
  font-size: 14px;
}

.footer-menu {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-menu a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
