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

/* Адаптация под тему сайта */
.privacy-section {
  background-color: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.privacy-subsection {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.privacy-list {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.privacy-list li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.effective-date {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--surface-light);
  border-radius: 4px;
}

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

h2 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

h3 {
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

h4 {
  color: var(--text-primary);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

strong {
  color: var(--text-primary);
}

.contact-info {
  background-color: var(--surface-light);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 2rem;
}

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

.table {
  color: var(--text-primary);
  border-color: var(--border);
}

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

.table tbody tr {
  border-bottom: 1px solid var(--border);
}

.table td, .table th {
  padding: 1rem;
  vertical-align: top;
}