/* Privacy Policy Page Styles */
.privacy-page {
  min-height: 100vh;
  background: #ffffff;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.privacy-container {
  max-width: 48rem; /* max-w-3xl equivalent */
  margin: 0 auto;
  padding: 5rem 1.5rem; /* py-20 px-6 equivalent */
  line-height: 1.7;
}

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

.privacy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.effective-date {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
  margin: 0;
}

.privacy-content {
  margin-bottom: 4rem;
}

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

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #56cdff;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.privacy-section p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.privacy-section li {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.privacy-section li strong {
  color: #1f2937;
  font-weight: 600;
}

.privacy-link {
  color: #56cdff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.privacy-link:hover {
  color: #3db8e0;
  text-decoration: underline;
}

.privacy-footer {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

.privacy-footer p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0.5rem 0;
}

.privacy-footer-link {
  margin-top: 1rem;
}

.privacy-footer-link .privacy-link {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-container {
    padding: 3rem 1rem;
  }
  
  .privacy-header h1 {
    font-size: 2rem;
  }
  
  .privacy-section h2 {
    font-size: 1.3rem;
  }
  
  .privacy-section p,
  .privacy-section li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .privacy-container {
    padding: 2rem 1rem;
  }
  
  .privacy-header h1 {
    font-size: 1.75rem;
  }
  
  .privacy-section h2 {
    font-size: 1.2rem;
  }
  
  .privacy-section p,
  .privacy-section li {
    font-size: 0.9rem;
  }
}






