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

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

.privacy-policy-content h1 {
  color: var(--text-primary);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

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

.privacy-policy-content p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

.privacy-policy-content li {
  margin-bottom: 0.75rem;
}

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

.privacy-policy-content .update-date {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--card-bg);
  border-left: 4px solid var(--primary-color);
}

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

.privacy-policy-content table {
  color: var(--text-primary);
  border-color: var(--primary-color);
}

.privacy-policy-content table thead {
  background: var(--card-bg);
  border-bottom: 2px solid var(--primary-color);
}

.privacy-policy-content table tbody tr {
  border-bottom: 1px solid rgba(var(--primary-color), 0.2);
}

.privacy-policy-content .contact-info {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

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