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

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

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

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

.privacy-content p {
  color: var(--text-secondary, rgba(255,255,255,0.8));
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-content ul,
.privacy-content ol {
  color: var(--text-secondary, rgba(255,255,255,0.8));
  line-height: 1.8;
  padding-left: 1.5rem;
}

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

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

.privacy-content .update-date {
  color: var(--text-secondary, rgba(255,255,255,0.6));
  font-style: italic;
  margin-bottom: 2rem;
}

.privacy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.privacy-content a:hover {
  color: var(--primary-dark);
}

/* Таблицы для юридического контента */
.privacy-content table {
  width: 100%;
  color: var(--text-primary);
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.privacy-content table th {
  background: var(--dark-card, rgba(255,255,255,0.05));
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border-color, rgba(255,255,255,0.1));
  font-weight: 600;
}

.privacy-content table td {
  padding: 0.75rem;
  border: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.privacy-content table tr:nth-child(even) {
  background: var(--dark-lighter, rgba(255,255,255,0.02));
}