    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      font-size: 16px;
      line-height: 1.7;
      color: #2d2d2d;
      background: #f9f9f9;
    }

    /* ── Header ── */
    .site-header {
      background: #fff;
      border-bottom: 1px solid #e5e5e5;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .site-header a { text-decoration: none; color: #1E3A5F; font-weight: 600; }
    .site-header nav a {
      margin-left: 1.5rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: #444;
    }
    .site-header nav a:hover { color: #1E3A5F; }

    /* ── Page wrapper ── */
    .page-wrapper {
      max-width: 860px;
      margin: 0 auto;
      padding: 3rem 2rem 5rem;
    }

    /* ── Page title ── */
    .page-title {
      text-align: center;
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid #e0e7f0;
    }
    .page-title h1 {
      font-size: 2rem;
      color: #1E3A5F;
      margin-bottom: 0.4rem;
    }
    .page-title p {
      font-size: 0.9rem;
      color: #777;
      font-style: italic;
    }

    /* ── Section headings ── */
    h2 {
      font-size: 1.2rem;
      color: #1E3A5F;
      margin: 2.2rem 0 0.6rem;
      padding-bottom: 0.3rem;
      border-bottom: 1px solid #d0dce8;
    }
    h3 {
      font-size: 1rem;
      color: #2C5F8A;
      margin: 1.4rem 0 0.4rem;
    }

    /* ── Body text ── */
    p { margin-bottom: 0.9rem; }

    strong { color: #1E3A5F; }

    /* ── Lists ── */
    ul {
      margin: 0.5rem 0 1rem 1.5rem;
      padding: 0;
    }
    ul li {
      margin-bottom: 0.45rem;
      padding-left: 0.3rem;
    }

    /* ── Notice box (statutory rights) ── */
    .notice {
      background: #eaf3fb;
      border-left: 4px solid #2C5F8A;
      padding: 1rem 1.2rem;
      margin: 1.2rem 0;
      border-radius: 0 6px 6px 0;
    }
    .notice p { margin: 0; font-size: 0.95rem; }

    /* ── Contact block ── */
    .contact-block {
      background: #fff;
      border: 1px solid #d0dce8;
      border-radius: 8px;
      padding: 1rem 1.4rem;
      margin: 0.8rem 0 1rem;
      display: inline-block;
    }
    .contact-block p { margin: 0.15rem 0; font-size: 0.95rem; }

    /* ── Footer ── */
    .site-footer {
      background: #1E3A5F;
      color: #aac4df;
      text-align: center;
      padding: 1.2rem;
      font-size: 0.85rem;
    }
    .site-footer a { color: #7fb8e0; text-decoration: none; }
    .site-footer a:hover { text-decoration: underline; }

    /* ── Responsive ── */
    @media (max-width: 600px) {
      .page-title h1 { font-size: 1.5rem; }
      h2 { font-size: 1.05rem; }
    }