/* Privacy Policy Page Styles */

.privacy-main {
  padding-top: 120px;
  padding-bottom: 4rem;
  min-height: 100vh;
  background: var(--background);
}

.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.privacy-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

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

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

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

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

.privacy-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.privacy-section li {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-info {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1rem;
}

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

.contact-info strong {
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-main {
    padding-top: 100px;
  }
  
  .privacy-header h1 {
    font-size: 2rem;
  }
  
  .privacy-section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .privacy-section h2 {
    font-size: 1.25rem;
  }
}