/* Fallback styles */
:root {
  --color-primary: #000000;
  --color-secondary: #16a34a;
  --color-accent: #8b5cf6;
  --font-family: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-family); line-height: 1.6; color: #1f2937; margin: 0; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; }
.btn-primary { background-color: var(--color-primary); color: white; padding: 0.75rem 1.5rem; border-radius: 0.25rem; font-weight: 500; text-decoration: none; display: inline-block; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn-primary:hover { opacity: 0.9; }
.card { background: white; border: 1px solid #e5e7eb; border-radius: 0.25rem; padding: 1.5rem; box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1); }
.form-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid #d1d5db; border-radius: 0.25rem; font-size: 1rem; }
.form-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 2px rgba(37,99,235,0.2); }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: white; border-top: 1px solid #e5e7eb; box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.1); z-index: 1000; padding: 1rem; }
.cookie-banner.hidden, #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; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media print { .no-print { display: none; } }
