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

  .privacy-content h1 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  .privacy-content h2 {
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .privacy-content p,
  .privacy-content li {
    color: var(--text-secondary);
    line-height: 1.75;
  }

  .privacy-content ul,
  .privacy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .privacy-content li {
    margin-bottom: 0.6rem;
  }

  .privacy-content strong {
    color: var(--text-primary);
  }

  .privacy-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .privacy-revision {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
  }