/* Typography adjustments for legal document */
.privacy-container {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.privacy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

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

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

.privacy-container p {
  margin-bottom: 1rem;
}

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

.privacy-container li {
  margin-bottom: 0.5rem;
}

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

/* Theme adaptation for Privacy Policy */
.privacy-section {
  background-color: var(--light);
  border-left: 3px solid var(--primary);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

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

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

.table {
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.table thead {
  background: var(--light);
  border-bottom: 2px solid var(--primary);
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.03);
}

.table th {
  font-weight: 600;
  color: var(--primary);
}

.contact-box {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
  margin-top: 3rem;
}

.last-updated {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.highlight-text {
  background-color: rgba(var(--primary-rgb, 0, 123, 255), 0.1);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}