/* Reset overflow */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Адаптация к теме сайта */
.privacy-header {
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

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

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

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

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

.privacy-section h4 {
  color: var(--text-primary, #ffffff);
  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, rgba(255,255,255,0.8));
}

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

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

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

.contact-info {
  background: var(--dark-card, rgba(255,255,255,0.05));
  border-left: 3px solid var(--primary-electric, #007bff);
  padding: 1.25rem;
  margin: 1.5rem 0;
  border-radius: var(--border-radius, 8px);
}

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

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

.table {
  color: var(--text-primary, #ffffff);
  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.15));
}

.table th {
  color: var(--text-primary, #ffffff);
  font-weight: 600;
  padding: 1rem;
  border-color: var(--border-color, rgba(255,255,255,0.1));
}

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

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

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