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

/* Адаптация к темной теме */
.privacy-container {
  background-color: var(--dark-card);
  color: var(--text-primary);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-electric);
}

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

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

.privacy-section h3 {
  color: var(--primary-cyan);
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

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

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

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

.privacy-section li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

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

.effective-date {
  background: var(--dark-surface);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent-orange);
}

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

.table-responsive {
  margin: 2rem 0;
  overflow-x: auto;
}

.table {
  color: var(--text-primary);
  border-color: var(--border-color, rgba(255,255,255,0.1));
  width: 100%;
  margin-bottom: 0;
}

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

.table th {
  color: var(--primary-electric);
  font-weight: 600;
  padding: 1rem;
  border-bottom: 2px solid var(--border-color, rgba(255,255,255,0.1));
}

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

.table tbody tr {
  transition: background-color 0.2s ease;
}

.table tbody tr:hover {
  background-color: var(--dark-surface, rgba(255,255,255,0.03));
}

.contact-info {
  background: var(--dark-surface);
  padding: 1.5rem;
  border-radius: 6px;
  margin-top: 2rem;
  border: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

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