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

.privacy-header {
  border-bottom: 2px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

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

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

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

.privacy-section h4 {
  color: var(--text);
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

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

.privacy-section ul li,
.privacy-section ol li {
  margin-bottom: 0.5rem;
}

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

.effective-date {
  background: var(--dark-lighter);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
  color: var(--text);
}

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

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

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

.table thead {
  background: var(--dark-card);
  border-bottom: 2px solid var(--border);
  color: var(--text);
}

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

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