:root {
  --color-primary: #065F46;
  --color-secondary: #6EE7B7;
  --color-accent: #FFFBEB;
}

/* Custom styles for enhanced design */
.prose h2 {
  @apply text-2xl font-bold text-gray-900 mt-8 mb-4;
}

.prose h3 {
  @apply text-xl font-semibold text-gray-900 mt-6 mb-3;
}

.prose p {
  @apply text-gray-600 mb-4 leading-relaxed;
}

.prose ul {
  @apply space-y-2 mb-6;
}

.prose li {
  @apply text-gray-600;
}

.prose a {
  @apply text-[var(--color-primary)] hover:underline;
}

.prose strong {
  @apply font-semibold text-gray-900;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom focus styles */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  ring: 2px;
  ring-color: var(--color-primary);
  ring-opacity: 50%;
}

/* Animation for mobile menu */
#mobile-menu {
  transition: all 0.3s ease-in-out;
}

/* Form validation styles */
.form-error {
  border-color: #EF4444;
}

.form-success {
  border-color: #10B981;
}

/* Cookie banner animation */
#cookie-banner {
  transition: transform 0.3s ease-in-out;
}

#cookie-banner.show {
  transform: translateY(0);
}

/* FAQ accordion styles */
.faq-content {
  transition: all 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

.faq-content.show {
  max-height: 200px;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Responsive table styles */
@media (max-width: 768px) {
  .prose table {
    font-size: 14px;
  }
  
  .prose th,
  .prose td {
    padding: 8px 12px;
  }
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}
/* Cookie banner visibility — independent of Tailwind */
#cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#cookie-modal.hidden { display: none !important; }
