:root {
  --section-spacing: 3rem;
}

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

@media (max-width: 767px) {
  h1 {
    font-size: 34px !important;
  }
}

.privacy-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.1));
}

.privacy-section {
  margin-bottom: var(--section-spacing);
}

.privacy-section h2 {
  color: var(--accent, #00d4ff);
  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: 500;
}

.privacy-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

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

.privacy-section strong {
  color: var(--accent, #00d4ff);
  font-weight: 600;
}

.last-updated {
  font-style: italic;
  color: var(--text-secondary, rgba(255,255,255,0.7));
  margin-bottom: 2rem;
}

.contact-info {
  background: var(--dark-card, rgba(255,255,255,0.05));
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  border-left: 3px solid var(--accent, #00d4ff);
}

@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 1.5rem;
  }
  
  .privacy-section h3 {
    font-size: 1.2rem;
  }
}