* { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
    background: #f4f6f9;
    color: #1e293b;
    line-height: 1.7;
    padding: 40px 24px;
  }

  .page {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
    padding: 56px 64px;
  }

  @media (max-width: 640px) {
    .page { padding: 32px 24px; }
  }

  /* Header */
  .header { border-bottom: 2px solid #FF5E1A; padding-bottom: 32px; margin-bottom: 40px; }
  .brand { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #FF5E1A; margin-bottom: 12px; }
  h1 { font-size: 28px; font-weight: 900; letter-spacing: -0.03em; color: #0e1014; margin-bottom: 8px; }
  .meta { font-size: 12px; color: #64748b; }
  .version-badge {
    display: inline-block; background: #f1f5f9; border: 1px solid #e2e8f0;
    border-radius: 6px; padding: 2px 8px; font-size: 11px; font-weight: 600;
    color: #475569; margin-left: 8px;
  }

  /* Sections */
  section { margin-bottom: 40px; }
  h2 {
    font-size: 13px; font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; color: #0e1014;
    border-left: 3px solid #FF5E1A; padding-left: 12px;
    margin-bottom: 16px;
  }
  h3 { font-size: 14px; font-weight: 700; color: #1e293b; margin: 20px 0 8px; }
  p { font-size: 14px; color: #475569; margin-bottom: 12px; }
  p:last-child { margin-bottom: 0; }

  /* Info box */
  .info-box {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px;
    padding: 16px 20px; margin: 16px 0; font-size: 13px; color: #475569;
  }
  .info-box strong { color: #1e293b; display: block; margin-bottom: 4px; font-size: 12px;
    text-transform: uppercase; letter-spacing: 0.08em; }

  /* Processor table */
  .processor-table { width: 100%; border-collapse: collapse; font-size: 13px; margin: 16px 0; }
  .processor-table th {
    text-align: left; font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; color: #64748b; padding: 8px 12px;
    background: #f8fafc; border-bottom: 1px solid #e2e8f0;
  }
  .processor-table td {
    padding: 10px 12px; border-bottom: 1px solid #f1f5f9;
    vertical-align: top; color: #475569;
  }
  .processor-table tr:last-child td { border-bottom: none; }
  .processor-table a { color: #FF5E1A; text-decoration: none; }
  .processor-table a:hover { text-decoration: underline; }

  /* Rights list */
  ul { padding-left: 20px; margin: 8px 0 12px; }
  ul li { font-size: 14px; color: #475569; margin-bottom: 6px; }

  /* Legal basis tag */
  .legal-tag {
    display: inline-block; background: #fff7ed; border: 1px solid #fed7aa;
    border-radius: 4px; padding: 1px 6px; font-size: 11px;
    font-weight: 600; color: #c2410c; margin-left: 4px;
  }

  /* Footer */
  .footer {
    margin-top: 48px; padding-top: 24px; border-top: 1px solid #e2e8f0;
    font-size: 12px; color: #94a3b8; display: flex;
    justify-content: space-between; flex-wrap: wrap; gap: 8px;
  }
  .back-link {
    display: inline-block; margin-bottom: 32px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: #FF5E1A; text-decoration: none;
  }
  .back-link:hover { text-decoration: underline; }

/* Signal-coloured links (replaces inline style="color:#FF5E1A") */
.link-signal { color: #FF5E1A; }

/* Muted small-print note (e.g. authoritative-language notice on terms-en) */
.lang-note { font-size: 13px; color: #64748b; }
