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

/* Адаптация к светлой теме */
.bg-light {
  background-color: var(--surface-light) !important;
  color: var(--text-dark) !important;
}

/* Юридический документ - минималистичный стиль */
.privacy-document {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.privacy-document h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-teal);
}

.privacy-document h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  color: var(--primary-coral);
  border-bottom: 2px solid var(--primary-coral);
  padding-bottom: 0.5rem;
}

.privacy-document h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 1rem;
  color: var(--button-primary);
}

.privacy-document h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--button-primary);
}

.privacy-document p {
  margin-bottom: 1rem;
}

.privacy-document ul,
.privacy-document ol {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
}

.privacy-document li {
  margin-bottom: 0.5rem;
}

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

.privacy-document .effective-date {
  font-style: italic;
  color: #6c757d;
  margin-bottom: 2rem;
}

.privacy-document .section-intro {
  background-color: rgba(255, 107, 107, 0.05);
  padding: 1.25rem;
  border-left: 4px solid var(--primary-coral);
  margin-bottom: 2rem;
}

.privacy-document .contact-box {
  background-color: var(--surface-light);
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  margin-top: 2rem;
  border-radius: 0.25rem;
}

.table-responsive {
  margin-bottom: 1.5rem;
}

.table {
  color: var(--text-dark);
  border-color: rgba(0,0,0,0.1);
}

.table thead {
  background: var(--surface-light);
  border-bottom: 2px solid rgba(0,0,0,0.1);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0,0,0,0.05);
}