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

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

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

.privacy-section h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--primary-cyan);
  padding-bottom: 0.5rem;
}

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

.privacy-section p {
  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;
}

.last-updated {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-left: 3px solid var(--primary-cyan);
  background-color: rgba(0, 150, 199, 0.05);
}

.contact-info {
  background-color: rgba(0, 150, 199, 0.08);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

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

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