/* Защита от горизонтального скролла */
  html, body { overflow-x: hidden; max-width: 100vw; }

  .privacy-doc {
    color: var(--fg);
    font-size: 1rem;
    line-height: 1.8;
  }

  .privacy-doc h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--card-border);
  }

  .privacy-doc .lead-intro {
    color: var(--fg);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .privacy-doc hr {
    border: none;
    border-top: 1px solid var(--card-border);
    margin: 2rem 0;
    opacity: 0.4;
  }

  .privacy-doc h2 {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 700;
    color: var(--accent, var(--fg));
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--accent, var(--gold));
  }

  .privacy-doc h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fg);
    opacity: 0.9;
    margin-top: 1.25rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
  }

  .privacy-doc p {
    color: var(--fg);
    opacity: 0.85;
    margin-bottom: 0.85rem;
  }

  .privacy-doc ul,
  .privacy-doc ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
  }

  .privacy-doc ul li,
  .privacy-doc ol li {
    color: var(--fg);
    opacity: 0.85;
    margin-bottom: 0.45rem;
    line-height: 1.7;
  }

  .privacy-doc ul li strong,
  .privacy-doc ol li strong {
    color: var(--fg);
    opacity: 1;
    font-weight: 600;
  }

  .privacy-doc .last-updated {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: italic;
    color: var(--fg);
  }

  .privacy-doc section {
    margin-bottom: 0.5rem;
  }

  .bg-light {
    background-color: var(--card-bg) !important;
    color: var(--fg) !important;
  }

  .bg-dark {
    background-color: var(--card-bg) !important;
    color: var(--fg) !important;
  }