:root {
  --bg: #f4f6f5;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: #d9e1dd;
  --accent: #0f766e;
  --success: #168653;
  font-family: Inter, "Segoe UI", ui-sans-serif, system-ui, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--ink); font-size: 16px; line-height: 1.65; }
a { color: #0b5f59; }
.legal-header { min-height: 70px; padding: 12px clamp(18px, 5vw, 64px); border-bottom: 1px solid var(--line); background: var(--surface); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.legal-brand { color: var(--ink); font-weight: 800; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.legal-brand img { width: 38px; height: 38px; border-radius: 8px; background: #111827; }
.legal-header nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.legal-header nav a { color: var(--muted); font-size: 13px; text-decoration: none; }
.legal-main { width: min(860px, calc(100% - 32px)); margin: 42px auto 70px; }
.legal-main > header { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; }
h1 { margin: 7px 0 10px; font-size: clamp(34px, 6vw, 52px); line-height: 1.08; }
h2 { margin: 34px 0 8px; font-size: 22px; line-height: 1.3; }
h3 { margin: 22px 0 5px; font-size: 17px; }
p, li { color: #475467; }
li { margin-bottom: 7px; }
.summary { font-size: 18px; }
.updated { color: var(--muted); font-size: 13px; }
.notice { margin: 22px 0; padding: 14px 16px; border-left: 4px solid var(--accent); background: #e6f2ef; }
.status-panel { margin-top: 24px; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.status-line { display: flex; align-items: center; gap: 9px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); }
.service-list { margin-top: 18px; border-top: 1px solid var(--line); }
.service-list div { padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; }
.legal-footer { padding: 22px 16px; border-top: 1px solid var(--line); color: var(--muted); text-align: center; font-size: 13px; }
@media (max-width: 620px) { .legal-header { align-items: flex-start; flex-direction: column; } .legal-main { margin-top: 28px; } }
