    :root {
      --bg: #f5f9ff;
      --paper: #ffffff;
      --text: #03153D;
      --muted: #6d84ac;
      --title: #03153D;
      --accent: #2A5592;
      --accent-soft: #dbe7ff;
      --border: #d9e4fb;
      --shadow: 0 18px 45px rgba(3, 21, 61, 0.08);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Inter', Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.65;
    }

    .page {
      max-width: 1120px;
      margin: 0 auto;
      padding: 40px 20px 70px;
    }

    .hero {
      background: linear-gradient(135deg, #ffffff 0%, #ecf3ff 100%);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 42px;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
      position: relative;
    }

    .top-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }

    .back-link {
      display: inline-block;
      color: var(--accent);
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
    }

    .lang-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: #ffffff;
      color: var(--accent);
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      transition: all .2s;
    }

    .lang-toggle:hover {
      border-color: var(--accent);
      background: var(--accent-soft);
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 14px;
      padding: 6px 12px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #2A5592;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      margin: 0 0 16px;
      color: var(--title);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.1;
      letter-spacing: -0.04em;
    }

    .intro {
      max-width: 850px;
      margin: 0;
      font-size: 18px;
      color: var(--muted);
    }

    .lang-disclaimer {
      margin-top: 22px;
      padding: 14px 18px;
      background: #f5f9ff;
      border: 1px dashed var(--border);
      border-radius: 12px;
      font-size: 13px;
      color: var(--muted);
    }

    .company-card {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      background: var(--paper);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
    }

    .company-card div {
      padding: 14px 16px;
      background: #f5f9ff;
      border-radius: 14px;
      border: 1px solid #d9e4fb;
    }

    .company-card strong {
      display: block;
      margin-bottom: 5px;
      color: var(--title);
      font-size: 14px;
    }

    .company-card span {
      color: var(--muted);
      font-size: 15px;
    }

    .content {
      background: var(--paper);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 42px;
      box-shadow: var(--shadow);
    }

    .toc {
      background: #f5f9ff;
      border: 1px solid #d9e4fb;
      border-radius: 18px;
      padding: 24px;
      margin-bottom: 36px;
    }

    .toc h2 {
      margin-top: 0;
      font-size: 20px;
    }

    .toc ol {
      margin: 0;
      padding-left: 22px;
      columns: 2;
      column-gap: 44px;
    }

    .toc a {
      color: var(--text);
      text-decoration: none;
    }

    .toc a:hover {
      color: var(--accent);
      text-decoration: underline;
    }

    section {
      padding: 30px 0;
      border-top: 1px solid var(--border);
    }

    section:first-of-type {
      border-top: none;
      padding-top: 0;
    }

    h2 {
      font-family: 'Playfair Display', serif;
      margin: 0 0 16px;
      color: var(--title);
      font-size: 25px;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    p {
      margin: 0 0 14px;
    }

    ul {
      margin: 0 0 14px;
      padding-left: 24px;
    }

    li {
      margin-bottom: 7px;
    }

    .notice {
      margin: 22px 0;
      padding: 18px 20px;
      background: #fdf6e8;
      border-left: 5px solid #c9861a;
      border-radius: 12px;
    }

    .notice strong {
      color: var(--title);
    }

    .footer-note {
      margin-top: 36px;
      padding: 22px;
      background: #f5f9ff;
      border: 1px solid #d9e4fb;
      border-radius: 18px;
      color: var(--muted);
      font-size: 14px;
    }

    .print-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 24px;
      padding: 12px 18px;
      background: var(--title);
      color: #ffffff;
      border: 0;
      border-radius: 999px;
      font-weight: 700;
      cursor: pointer;
    }

    .print-button:hover {
      opacity: 0.92;
    }

    @media (max-width: 760px) {
      .page {
        padding: 24px 14px 50px;
      }

      .hero,
      .content {
        padding: 26px;
        border-radius: 18px;
      }

      .company-card {
        grid-template-columns: 1fr;
      }

      .toc ol {
        columns: 1;
      }
    }

    @media print {
      body {
        background: #ffffff;
      }

      .page {
        max-width: none;
        padding: 0;
      }

      .hero,
      .company-card,
      .content {
        box-shadow: none;
        border-radius: 0;
      }

      .print-button,
      .toc,
      .lang-toggle {
        display: none;
      }

      section {
        page-break-inside: avoid;
      }
    }
