
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: #f8fafc;
      color: #1e293b;
      line-height: 1.6;
    }
    .container {
      max-width: 720px;
      margin: 0 auto;
      padding: 40px 24px 60px;
    }
    h1 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .intro {
      font-size: 15px;
      color: #64748b;
      margin-bottom: 32px;
    }
    .section {
      background: #fff;
      border-radius: 12px;
      padding: 24px;
      margin-bottom: 16px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    h2 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #0f172a;
    }
    p {
      font-size: 15px;
      color: #475569;
      margin-bottom: 12px;
    }
    p:last-child { margin-bottom: 0; }
    ul {
      list-style: none;
      padding: 0;
    }
    ul li {
      font-size: 15px;
      color: #475569;
      padding: 4px 0 4px 20px;
      position: relative;
    }
    ul li::before {
      content: "\2022";
      color: #3b82f6;
      font-size: 18px;
      position: absolute;
      left: 0;
      top: 2px;
    }
    a {
      color: #0060ee;
      text-decoration: none;
    }
    a:hover { text-decoration: underline; }
    .legal-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 24px;
    }
    .legal-nav a {
      display: inline-flex;
      align-items: center;
      min-height: 48px;
      font-weight: 700;
    }
    .footer {
      text-align: center;
      font-size: 13px;
      color: #94a3b8;
      margin-top: 40px;
    }
