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

  .privacy-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--acc);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--card-border);
  }

  .privacy-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--fg);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .privacy-section p,
  .privacy-section li {
    color: var(--fg2);
    line-height: 1.75;
    font-size: 0.97rem;
  }

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

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

  .doc-meta {
    font-size: 0.88rem;
    color: var(--fg2);
    border-left: 3px solid var(--acc);
    padding-left: 1rem;
    margin-bottom: 2rem;
  }

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

  .table {
    color: var(--fg);
    border-color: var(--card-border);
  }

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

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