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

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

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

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

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

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

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

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

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

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

.privacy-section ul li {
  list-style-type: disc;
}

.privacy-section ol li {
  list-style-type: decimal;
}

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

.effective-date {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-info {
  background-color: rgba(var(--primary-rgb), 0.05);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
  margin-top: 2rem;
}

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

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

.table thead {
  background-color: rgba(var(--primary-rgb), 0.1);
  border-bottom: 2px solid var(--primary);
}

.table thead th {
  color: var(--primary);
  font-weight: 600;
  padding: 1rem;
}

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

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(var(--primary-rgb), 0.03);
}