/* Base text styling for legal document */
.privacy-content {
  color: var(--text-primary);
  line-height: 1.8;
}

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

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

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

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

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

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

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

.privacy-content .last-updated {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(var(--primary-color-rgb, 79, 70, 229), 0.1);
  border-radius: 8px;
}

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

/* Table styling for data categories */
.privacy-table {
  width: 100%;
  color: var(--text-primary);
  border-collapse: collapse;
  margin-bottom: 2rem;
}

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

.privacy-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
}

.privacy-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(var(--primary-color-rgb, 79, 70, 229), 0.2);
  color: var(--text-secondary);
}

.privacy-table tbody tr:hover {
  background: rgba(var(--primary-color-rgb, 79, 70, 229), 0.05);
}