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

  .policy-title {
    color: var(--fg);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }

  .policy-intro {
    color: var(--fg2);
    font-size: 1rem;
    line-height: 1.75;
    border-left: 3px solid var(--acc);
    padding-left: 1rem;
    margin-bottom: 2rem;
  }

  .policy-divider {
    border: none;
    border-top: 1px solid rgba(128,128,128,0.2);
    margin: 2rem 0;
  }

  .policy-section {
    margin-bottom: 2.5rem;
  }

  .policy-section h2 {
    color: var(--fg);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(128,128,128,0.2);
  }

  .policy-section p {
    color: var(--fg2);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
  }

  .policy-section ul {
    color: var(--fg2);
    font-size: 0.97rem;
    line-height: 1.75;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
  }

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

  .policy-section ul li strong {
    color: var(--fg);
  }

  .policy-meta {
    font-size: 0.85rem;
    color: var(--fg2);
    opacity: 0.7;
    margin-bottom: 2rem;
  }