/* legal.css - Styling for legal pages (Privacy Policy, Terms of Service, Cookie Policy, etc.) */

/* Hero section with gradient background */
.bg-purple-900 {
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
}

/* Typography enhancements */
.prose {
  max-width: none;
}

.prose h2 {
  color: #4c1d95;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.prose h3 {
  color: #6d28d9;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.prose a {
  color: #6d28d9;
  text-decoration: none;
  transition: color 0.2s;
}

.prose a:hover {
  color: #4c1d95;
  text-decoration: underline;
}

/* Content panels */
.bg-gray-50 {
  border-radius: 0.5rem;
  border: 1px solid #edf2f7;
}

/* Lists in legal content */
.prose ul {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.prose li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Tables in legal content */
.prose table {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  border-collapse: collapse;
}

.prose table th {
  font-weight: 600;
  padding: 0.75rem 1rem;
  background-color: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.prose table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.prose table tr:hover {
  background-color: #f7fafc;
}

/* Contact sections at the bottom of legal pages */
.contact-info {
  background-color: #f7fafc;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prose {
    font-size: 0.9375rem;
  }
  
  .prose h2 {
    font-size: 1.5rem;
  }
  
  .prose h3 {
    font-size: 1.25rem;
  }
  
  .prose table {
    display: block;
    overflow-x: auto;
  }
}

/* Print styles for legal pages */
@media print {
  .bg-purple-900 {
    background: white !important;
    color: black !important;
    padding: 1rem !important;
  }
  
  .bg-purple-900 * {
    color: black !important;
  }
  
  body {
    font-size: 11pt;
  }
  
  .prose h2 {
    font-size: 14pt;
    margin-top: 1.5rem;
  }
  
  .prose h3 {
    font-size: 12pt;
  }
  
  .prose p {
    line-height: 1.4;
  }
  
  nav, footer, .hidden-print {
    display: none !important;
  }
  
  table {
    border-collapse: collapse;
    width: 100%;
  }
  
  table, th, td {
    border: 1px solid #000;
  }
}