:root {
  --color-primary: #000000;
  --color-secondary: #8b5cf6;
  --color-accent: #2563eb;
}

* {
  font-family: 'Open Sans', sans-serif;
}

body {
  line-height: 1.6;
}

.prose {
  color: #374151;
}

.prose h1 {
  color: #111827;
  font-weight: 700;
}

.prose h2 {
  color: #111827;
  font-weight: 600;
}

.prose h3 {
  color: #111827;
  font-weight: 600;
}

.prose h4 {
  color: #111827;
  font-weight: 500;
}

.prose a {
  color: var(--color-primary);
  text-decoration: underline;
}

.prose a:hover {
  opacity: 0.8;
}

.prose strong {
  color: #111827;
  font-weight: 600;
}

.prose ul {
  margin: 1rem 0;
}

.prose li {
  margin: 0.5rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.prose th {
  background-color: #f9fafb;
  font-weight: 600;
  text-align: left;
}

.prose th,
.prose td {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
}

.prose tr:nth-child(even) {
  background-color: #f9fafb;
}

/* Accordion Styles */
.accordion-button.active .lucide {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.active {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

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

/* Focus States */
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Custom Checkbox Styles */
input[type="checkbox"] {
  accent-color: var(--color-primary);
}

/* Loading Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Responsive Images */
img {
  height: auto;
  max-width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Print Styles */
@media print {
  .no-print {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}
/* 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; }
