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

  .policy-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    border-left: 3px solid var(--accent);
    padding-left: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .policy-section:last-child {
    border-bottom: none;
  }

  .policy-section h2 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
  }

  .policy-section ul,
  .policy-section ol {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
  }

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

  .policy-subsection-label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .policy-term {
    color: var(--accent);
    font-weight: 600;
  }

  .policy-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
  }