:root {
  --text-muted: rgba(255, 255, 255, 0.7);
  --border-subtle: rgba(255, 255, 255, 0.1);
}

.privacy-header {
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.privacy-section {
  margin-bottom: 3rem;
}

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

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

.privacy-section p {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-section ul,
.privacy-section ol {
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

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

.effective-date {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.data-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

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

.data-table td {
  color: var(--text-primary);
}

.contact-info {
  background: var(--dark-card);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
  border-left: 3px solid var(--primary);
}

.contact-info p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.2rem;
  }
  
  .data-table {
    font-size: 0.9rem;
  }
  
  .data-table th,
  .data-table td {
    padding: 0.75rem 0.5rem;
  }
}