:root {
  --red: #d81820;
  --ink: #111418;
  --muted: #65717e;
  --line: #dbe2ea;
  --paper: #f4f6f8;
  --white: #fff;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
a { color: inherit; }
.legal-header, .legal-footer { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; padding: 20px clamp(18px, 5vw, 72px); background: #fff; border-bottom: 1px solid var(--line); }
.legal-header img { width: 92px; background: #fff; border-radius: 8px; }
.legal-header nav, .legal-footer nav { display: flex; flex-wrap: wrap; gap: 16px; font-weight: 900; }
.legal-header a, .legal-footer a { text-decoration: none; }
main { max-width: 980px; margin: 0 auto; padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 40px); }
.kicker { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
h1 { margin: 10px 0 22px; font-size: clamp(38px, 7vw, 76px); line-height: 0.95; }
h2 { margin-top: 34px; font-size: clamp(24px, 4vw, 38px); line-height: 1.1; }
.notice, section { padding: clamp(20px, 4vw, 30px); background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 16px 50px rgba(17, 20, 24, 0.08); }
section + section { margin-top: 18px; }
.notice { margin-bottom: 18px; border-left: 5px solid var(--red); }
ul { padding-left: 20px; }
.legal-footer { border-top: 1px solid var(--line); border-bottom: 0; color: var(--muted); }

@media (max-width: 700px) {
  .legal-header, .legal-footer { align-items: flex-start; flex-direction: column; }
}
