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

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

  .privacy-page h1 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .privacy-page h2 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .privacy-page h3 {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .privacy-page p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .privacy-page ul,
  .privacy-page ol {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  }

  .privacy-page li {
    margin-bottom: 0.4rem;
  }

  .privacy-page strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .privacy-page hr {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 1.5rem 0;
  }

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

  .privacy-page .intro-text {
    color: var(--text-secondary);
    font-size: 0.975rem;
    line-height: 1.8;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--accent);
    background: var(--bg-highlight, rgba(255,255,255,0.03));
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1.5rem;
  }

  .bg-light {
    background-color: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
  }

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

  .table {
    color: var(--text-primary);
    border-color: var(--border-subtle);
  }

  .table thead {
    background: var(--bg-card);
    border-bottom: 2px solid var(--border-subtle);
  }