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

  .bg-light {
    background-color: var(--surfaceCard) !important;
    color: var(--textPrimary) !important;
  }

  .table {
    color: var(--textPrimary);
    border-color: var(--surfaceBorder);
  }

  .table thead {
    background: var(--surfaceElevated);
    border-bottom: 2px solid var(--surfaceBorder);
  }

  .table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--surfaceElevated);
  }

  .privacy-section {
    border-top: 1px solid var(--borderSubtle);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }

  .privacy-section:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .section-number {
    color: var(--accent);
    font-weight: 700;
    margin-right: 0.5rem;
  }

  h1 {
    color: var(--textPrimary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  h2 {
    color: var(--textPrimary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  h3 {
    color: var(--textSecondary);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  p, li {
    color: var(--textSecondary);
    line-height: 1.75;
  }

  ul li, ol li {
    margin-bottom: 0.4rem;
  }

  .meta-note {
    color: var(--textMuted);
    font-size: 0.9rem;
  }

  .toc-list {
    list-style: none;
    padding-left: 0;
  }

  .toc-list li {
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--borderSubtle);
  }

  .toc-list li a {
    color: var(--accent);
    text-decoration: none;
  }

  .toc-list li a:hover {
    text-decoration: underline;
  }

  .highlight-box {
    background: var(--surfaceElevated);
    border-left: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
  }

  .highlight-box p {
    margin-bottom: 0;
    color: var(--textPrimary);
    font-size: 0.95rem;
  }