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

/* Адаптация к темной теме */
.privacy-content {
  color: var(--text-primary);
  line-height: 1.8;
}

.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(--text-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

.privacy-section p {
  margin-bottom: 1rem;
  color: var(--text-muted, rgba(255,255,255,0.8));
}

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

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

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

.last-updated {
  background: var(--dark-card, rgba(255,255,255,0.05));
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 3rem;
  border-left: 4px solid var(--primary);
}

.last-updated p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted, rgba(255,255,255,0.8));
}

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

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

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