/* Privacy Policy Page Styles */
.privacy-policy-page {
  color: var(--text-primary);
}

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

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

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

.privacy-policy-page p {
  line-height: 1.8;
  color: var(--text-secondary);
}

.privacy-policy-page ul,
.privacy-policy-page ol {
  line-height: 1.8;
  color: var(--text-secondary);
  padding-left: 1.5rem;
}

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

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

.privacy-policy-page .last-updated {
  font-style: italic;
  color: var(--text-secondary);
  opacity: 0.8;
}

.privacy-policy-page .important-notice {
  padding: 1.5rem;
  background: var(--card-bg);
  border-left: 4px solid var(--accent-primary);
  margin: 2rem 0;
}

/* Table Styles */
.privacy-policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.privacy-policy-page table th,
.privacy-policy-page table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--card-border);
}

.privacy-policy-page table th {
  background: var(--card-bg);
  color: var(--text-primary);
  font-weight: 600;
}

.privacy-policy-page table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}