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

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

.privacy-section {
  margin-bottom: 3rem;
  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(--accent);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

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

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

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

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

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

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

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

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

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

.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 th {
  color: var(--accent);
  font-weight: 600;
  padding: 1rem;
  border-color: var(--border-color, rgba(255,255,255,0.1));
}

.table td {
  padding: 1rem;
  border-color: var(--border-color, rgba(255,255,255,0.1));
  vertical-align: top;
}

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

@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.2rem;
  }
}