:root { --txt: #1f1f1f; --muted: #666; --border: #e0e0e0; --link: #0d40ff; --bg: #ffffff; }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); }
  body {
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--txt); font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  }
  header { background: #fff; border-bottom: 1px solid var(--border); padding: 16px 24px; }
  header a { font-family: 'Poppins', sans-serif; font-weight: 900; font-size: 24px;
             color: #000; text-decoration: none; letter-spacing: -0.5px; }
  .wrapper { max-width: 880px; margin: 0 auto; padding: 32px 24px 64px; }
  .page-title { font-family: 'Poppins', sans-serif; font-weight: 900;
                font-size: 36px; line-height: 1.2; margin: 0 0 24px; color: #000; }
  h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; color: #000; line-height: 1.3; }
  h2 { font-size: 26px; margin: 32px 0 12px; }
  h3 { font-size: 20px; margin: 24px 0 12px; }
  h4 { font-size: 17px; margin: 20px 0 8px; }
  p { margin: 0 0 16px; }
  ol, ul { padding-left: 24px; margin: 0 0 16px; }
  ol ol, ul ul, ol ul, ul ol { margin-top: 8px; padding-left: 24px; }
  li { margin-bottom: 8px; }
  strong, b { font-weight: 700; }
  a { color: var(--link); text-decoration: underline; word-break: break-word; }
  a:hover { text-decoration: none; }
  table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 14px; }
  th, td { border: 1px solid var(--border); padding: 10px 12px; vertical-align: top; text-align: left; }
  th, table tr:first-child td { background: #fafafa; font-weight: 700; }
  figure.wp-block-table { margin: 16px 0; overflow-x: auto; }
  hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }
  .legal-footer { border-top: 1px solid var(--border); margin-top: 48px;
                  padding: 24px; text-align: center; color: var(--muted); font-size: 14px; }
  .legal-footer a { margin: 0 8px; color: var(--muted); }
  @media (max-width: 600px) {
    .page-title { font-size: 28px; }
    .wrapper { padding: 24px 16px 48px; }
  }