  :root {
    --accent: #d4091b;
    --accent-light: #e84455;
    --bg: #ffffff;
    --card: #ffffff;
    --text: #3d4a5c;
    --muted: #8a939f;
    --border: #f0d8db;
  }

  .privacy {
    max-width: 100%;
    margin: 0 auto;
    background: var(--card);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 48px 52px;
  }

  /* Section titles  renamed from .pTit */
  .privacy-heading {
    font-size: 21px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-light);
    display: flex;
    align-items: center;
  }

  .privacy-heading::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 22px;
    background: var(--accent-light);
    border-radius: 3px;
    margin-right: 12px;
  }

  .privacy-heading:first-of-type {
    margin-top: 28px;
  }

  /* Body paragraphs  renamed from .pText */
  .privacy-body {
    margin-top: 16px;
    color: var(--text);
  }

  .privacy-body p {
    margin-bottom: 12px;
  }

  .privacy-body p:last-child {
    margin-bottom: 0;
  }

  /* Intro paragraph at the top */
  .privacy-intro {
    font-size: 15.5px;
    color: var(--muted);
    text-align: center;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }

  /* Numbered list items */
  .privacy-body p {
    text-indent: 0;
  }

  @media (max-width: 640px) {
    body { padding: 24px 12px; }
    .privacy { padding: 28px 22px; }
    .privacy-heading { font-size: 18px; }
  }