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

/* Адаптация к темной теме */
.privacy-content {
  color: var(--text-primary);
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

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

.privacy-section h2 {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

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

.privacy-section h4 {
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.privacy-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

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

.privacy-section li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--text-muted);
}

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

.effective-date {
  background: var(--dark-lighter, rgba(255,255,255,0.05));
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.effective-date p {
  margin: 0;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-info {
  background: var(--dark-lighter, rgba(255,255,255,0.05));
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Таблицы */
.table-responsive {
  margin: 1.5rem 0;
}

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

.table thead {
  background: var(--dark-card, rgba(255,255,255,0.05));
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
}

.table thead th {
  color: var(--primary);
  font-weight: 600;
  border-color: var(--border-color, rgba(255,255,255,0.1));
}

.table tbody td {
  border-color: var(--border-color, rgba(255,255,255,0.1));
  color: var(--text-muted);
}

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