/* =======================================================================
   CSS RESET & NORMALIZATION
   ======================================================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body { line-height: 1; background: #101018; color: #fff; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: 100%; margin: 0; }
button { border: none; background: none; cursor: pointer; }
:focus { outline: 2px solid #F8CB2E; outline-offset: 2px; }

/* =======================================================================
   CSS VARIABLES - Brand & Tech-Futuristic Palette
   ======================================================================= */
:root {
  --fz-primary: #256190;
  --fz-secondary: #F8CB2E;
  --fz-accent: #FFFFFF;
  --fz-bg-dark: #101018;
  --fz-bg-light: #21243a;
  --fz-bg-card: #1B2130;
  --fz-border: #344979;
  --fz-input-bg: #23273d;
  --fz-danger: #f24e4e;
  --fz-success: #35d176;
  --fz-blue-neon: #73daff;
  --fz-yellow-neon: #F8CB2E;
  --fz-shadow: 0 8px 24px 0 rgba(37, 97, 144, 0.10), 0 1.5px 6px 0 rgba(40,200,255,0.04);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --fz-radius: 18px;
}

/* =======================================================================
   BASE TYPOGRAPHY
   ======================================================================= */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fz-accent);
  background: var(--fz-bg-dark);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fz-secondary);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(115,218,255,0.10), 0 2px 6px rgba(248,203,46,0.08);
}
h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.375rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 500; }
p, ul, li { font-size: 1rem; color: var(--fz-accent); margin-bottom: 8px; }
strong { color: var(--fz-blue-neon); font-weight: bold; }

@media (max-width:768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
}

/* =======================================================================
   STRUCTURE & CONTAINERS
   ======================================================================= */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section { margin-bottom: 60px; padding: 40px 20px; }

/* =======================================================================
   HEADER & MAIN NAVIGATION
   ======================================================================= */
header {
  background: var(--fz-bg-light);
  box-shadow: 0 5px 32px rgba(37, 97, 144, 0.08);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 22;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  color: var(--fz-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1.1px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--fz-primary);
  color: var(--fz-secondary);
}

.cta-btn {
  font-family: var(--font-display);
  background: var(--fz-primary);
  color: var(--fz-secondary);
  padding: 10px 26px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 12px 0 rgba(40,200,255,0.09),0 1px 2px 0 rgba(30,90,170,0.07);
  margin-left: 20px;
  position: relative;
  letter-spacing: 1.2px;
  border: 2px solid var(--fz-secondary);
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--fz-yellow-neon);
  color: var(--fz-primary);
  box-shadow: 0 0 16px 3px var(--fz-yellow-neon), 0 2px 20px 0 rgba(40,200,255,0.12);
  border-color: var(--fz-blue-neon);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--fz-primary);
  color: var(--fz-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.16s;
  z-index: 24;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--fz-secondary);
  color: var(--fz-primary);
}

/* =======================================================================
   MOBILE NAVIGATION
   ======================================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,16,24,0.94);
  z-index: 99;
  transform: translateX(-100vw);
  will-change: transform;
  transition: transform 0.37s cubic-bezier(0.66,0.04,0.38,1.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  color: var(--fz-yellow-neon);
  background: none;
  margin: 32px 32px 0 0;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--fz-primary);
  color: var(--fz-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 36px 36px 20px 36px;
}
.mobile-nav a {
  color: var(--fz-secondary);
  font-size: 1.2rem;
  letter-spacing: 1.3px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 2px 12px 12px;
  transition: background 0.13s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--fz-blue-neon);
  color: #172034;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* =======================================================================
   HERO / SECTION BACKGROUNDS (Tech-futuristic pattern)
   ======================================================================= */
.hero {
  background: linear-gradient(130deg, #256190 0%, #101018 70%);
  padding: 80px 0 64px 0;
  position: relative;
  box-shadow: 0 16px 42px -20px var(--fz-primary);
}
.hero h1, .hero p {
  color: #fff;
  text-shadow: 0 2px 24px #25619044;
}
.hero .cta-btn {
  margin-top: 32px;
}

/* =======================================================================
   FLEXBOX CARD & FEATURE LAYOUTS
   ======================================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 8px;
}
.card {
  background: var(--fz-bg-card);
  border-radius: var(--fz-radius);
  margin-bottom: 20px;
  box-shadow: var(--fz-shadow);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 260px;
  flex: 1 1 260px;
  border: 1.8px solid var(--fz-border);
  transition: box-shadow 0.19s, border 0.14s;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 0 28px 3px var(--fz-blue-neon),0 2px 24px 0 rgba(40,200,255,0.20);
  border: 2.8px solid var(--fz-yellow-neon);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: #fff;
  color: #151730;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(37, 97, 144, 0.09);
  margin-bottom: 28px;
  min-width: 260px;
  border: 2px solid var(--fz-blue-neon);
}
.testimonial-card p {
  color: #1e2340;
  font-size: 1.05rem;
}
.testimonial-meta {
  color: var(--fz-primary);
  font-size: 0.99rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.pro-tip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 12px 0;
}
.pro-tip {
  flex: 1 1 260px;
  background: #19233A;
  color: var(--fz-yellow-neon);
  border-left: 5px solid var(--fz-blue-neon);
  padding: 18px 24px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--fz-shadow);
  font-size: 1rem;
}

.features, .feature-grid, .feature-boxes .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  background: var(--fz-bg-card);
  border-radius: var(--fz-radius);
  padding: 28px 18px 30px 18px;
  box-shadow: var(--fz-shadow);
  flex: 1 1 250px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 2px solid var(--fz-border);
  position: relative;
  transition: box-shadow 0.18s, border 0.13s;
  z-index: 1;
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 1.25rem;
  color: var(--fz-yellow-neon);
}
.feature:hover {
  box-shadow: 0 0 22px 5px var(--fz-yellow-neon),0 4px 18px 0 rgba(40,200,255,0.14);
  border-color: var(--fz-yellow-neon);
}

.quick-links {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--fz-blue-neon);
  font-weight: 600;
}
.quick-links a {
  text-decoration: underline;
  margin: 0 8px;
  color: var(--fz-blue-neon);
  transition: color 0.13s;
}
.quick-links a:hover { color: var(--fz-secondary); }

.category-filters strong { color: var(--fz-yellow-neon); }
.category-filters span { color: var(--fz-blue-neon); margin-left: 6px; }

.event-filters {
  margin: 24px 0 0 0;
  font-size: 1.02rem;
  color: var(--fz-secondary);
}
.event-filters strong { color: var(--fz-blue-neon); margin: 0 2px; }

.help-links {
  margin-top: 20px;
  font-size: 0.98rem;
  color: var(--fz-blue-neon);
}
.help-links a {
  color: var(--fz-yellow-neon);
  margin: 0 6px 0 0;
  text-decoration: underline;
}
.help-links a:hover { color: var(--fz-blue-neon); }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.share-tip {
  margin-top: 24px;
  font-size: 1.07rem;
  color: var(--fz-blue-neon);
}
.share-tip a { color: var(--fz-yellow-neon); text-decoration: underline; }
.share-tip a:hover { color: var(--fz-blue-neon); }

/**************** RESPONSIVE FLEXBOX *****************/
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
  .content-wrapper { padding: 36px 6vw; }
}
@media (max-width: 991px) {
  .features, .feature-grid, .card-container, .pro-tip-cards {
    flex-direction: column;
    gap: 24px;
  }
  .main-nav { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper { padding: 30px 6px; }
  .section { padding: 30px 4px; }
  .hero { padding: 48px 0 30px 0; }
  .features, .feature-grid, .card-container, .content-grid, .pro-tip-cards {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
  }
}

/* =======================================================================
   LINKS & BUTTONS
   ======================================================================= */
a {
  transition: color 0.16s, border-bottom 0.15s;
}
a:focus { outline: 2px solid var(--fz-blue-neon); }

button {
  transition: background 0.2s, border 0.2s, color 0.2s;
}

.primary {
  background: var(--fz-primary);
  color: var(--fz-secondary);
}
.primary:hover,
.primary:focus {
  background: var(--fz-yellow-neon);
  color: var(--fz-primary);
}

/* =======================================================================
   ABOUT, LEGAL, FAQ, CONFIRMATION
   ======================================================================= */
.about-short, .about, .services, .tips, .highlights, .feature-boxes, .cta, .call-to-action, .event-list, .resources, .legal, .team, .confirmation, .faq, .weather, .indoor-activities, .contact {
  background: var(--fz-bg-card);
  border-radius: var(--fz-radius);
  box-shadow: var(--fz-shadow);
  margin-bottom: 45px;
}

.text-section h2, .text-section h3 {
  color: var(--fz-yellow-neon);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0 0 0;
}
.faq-item {
  background: #202a3e;
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  border: 2px solid var(--fz-border);
  box-shadow: var(--fz-shadow);
}
.faq-item h3 { margin-bottom: 10px; color: var(--fz-blue-neon); }
.faq-item p { margin-bottom: 0; }

/******************
   CONTACT DETAILS
******************/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
}
.contact-details img { width: 22px; height: 22px; }

/******************
   WETTER & INDOOR
******************/
.current-weather {
  background: var(--fz-bg-light);
  border-radius: 14px;
  padding: 24px 24px;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px rgba(40,200,255,0.10);
}
.current-weather img { vertical-align: middle; margin-right: 10px; }
.weather-tips {
  background: #182246;
  padding: 16px 20px;
  border-radius: 9px;
  color: var(--fz-yellow-neon);
  margin-bottom: 18px;
  font-weight: 500;
}

/******************
   EVENT OVERVIEW
******************/
.events-overview {
  background: var(--fz-bg-card);
  border-radius: 14px;
  padding: 22px 18px;
  margin-bottom: 18px;
  box-shadow: var(--fz-shadow);
}
.calendar-view {
  color: var(--fz-yellow-neon);
  margin-top: 16px;
}

/******************
   CARD-WRAPPED ULs/LI
******************/
ul {
  padding-left: 0;
  margin-bottom: 18px;
}
ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
}
ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--fz-blue-neon);
  border-radius: 50%;
  margin-right: 13px;
  position: absolute;
  left: 0;
  top: 7px;
  box-shadow: 0 0 12px 2px var(--fz-yellow-neon);
}

li strong { color: var(--fz-yellow-neon); font-weight: bold; }

/******************
   MODALS, ALERTS, ANIMATIONS
******************/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =======================================================================
   FOOTER
   ======================================================================= */
footer {
  background: var(--fz-bg-light);
  color: var(--fz-accent);
  padding: 40px 0 12px 0;
  margin-top: 70px;
  font-size: 0.99rem;
  letter-spacing: 0.03em;
  box-shadow: 0 -8px 28px rgba(37, 97, 144, 0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav, .footer-legal, .footer-social, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  align-items: center;
}
.footer-nav a, .footer-legal a {
  color: var(--fz-yellow-neon);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.14s;
  margin-right: 10px;
}
.footer-legal a:last-child,
.footer-nav a:last-child { margin-right: 0; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--fz-blue-neon); }
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #cbe8ff;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
.footer-social a img {
  width: 36px;
  height: 36px;
  filter: brightness(1.1) drop-shadow(0 0 8px #73daff96);
  margin-right: 10px;
  transition: transform 0.18s;
}
.footer-social a img:hover {
  transform: scale(1.1) rotate(-7deg);
}
.footer-copy {
  margin-top: 18px;
  color: #cbe8ff;
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  footer .container, .footer-nav, .footer-legal, .footer-contact, .footer-social {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
}

/* =======================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 888;
  background: var(--fz-bg-card);
  color: #fff;
  padding: 24px 2vw 22px 2vw;
  box-shadow: 0 -6px 44px 0 rgba(40,200,255,0.09);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation: fadeInUp 0.64s;
}
.cookie-banner p {
  font-size: 1rem;
  margin: 0 0 6px 0;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  background: var(--fz-blue-neon);
  color: #101018;
  font-family: var(--font-display);
  border-radius: 100px;
  font-size: 1rem;
  padding: 9px 22px;
  font-weight: 600;
  margin-right: 6px;
  border: none;
  transition: background 0.15s, color 0.17s, box-shadow 0.18s;
  box-shadow: 0 2px 12px 0 rgba(40,200,255,0.09),0 1px 2px 0 rgba(30,90,170,0.07);
}
.cookie-btn:last-child { margin-right: 0; }
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--fz-yellow-neon);
  color: var(--fz-primary);
  box-shadow: 0 0 14px 2px var(--fz-yellow-neon);
}
.cookie-btn.reject {
  background: var(--fz-danger);
  color: #fff;
}
.cookie-btn.reject:hover { background: #7d3030; color: var(--fz-yellow-neon); }
.cookie-btn.settings {
  background: var(--fz-primary);
  color: var(--fz-secondary);
}
.cookie-btn.settings:hover { background: var(--fz-yellow-neon); color: var(--fz-primary); }

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  z-index: 999;
  background: rgba(16,17,24,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
.cookie-modal-content {
  background: var(--fz-bg-card);
  color: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 36px 0 rgba(40,200,255,0.18);
  max-width: 98vw;
  min-width: 320px;
  width: 406px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeInUp 0.29s;
}
.cookie-modal-content h2 { color: var(--fz-yellow-neon); margin-bottom: 4px; }
.cookie-modal-content ul {
  margin-bottom: 16px;
  padding-left: 0;
  font-size: 1rem;
}
.cookie-modal-content li {
  margin-bottom: 9px;
  color: #fff;
  list-style: none;
  position: relative;
  padding-left: 24px;
}
.cookie-modal-content li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--fz-blue-neon);
  border-radius: 50%;
  margin-right: 11px;
  position: absolute;
  left: 0;
  top: 8px;
  box-shadow: 0 0 5px 0 var(--fz-yellow-neon);
}
.cookie-toggle {
  appearance: none;
  width: 40px; height: 22px;
  background: #2b3a51;
  border-radius: 100px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.13s;
  vertical-align: middle;
}
.cookie-toggle:checked { background: var(--fz-yellow-neon); }
.cookie-toggle::after {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
  box-shadow: 0 1px 6px #25619026;
}
.cookie-toggle:checked::after { left: 21px; }
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 2rem;
  color: var(--fz-yellow-neon);
  background: none;
  border: none;
  z-index: 10;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .cookie-modal-content {
    width: 96vw; min-width: 0; padding: 22px 7vw; font-size: 1rem;
  }
  .cookie-banner { flex-direction: column; gap: 14px; padding: 17px 1vw 13px 1vw; }
}

/* =======================================================================
   MISC SPACING/UTILITIES
   ======================================================================= */
.mt-8 { margin-top: 8px !important; } .mt-16 { margin-top: 16px !important; }
.mb-8 { margin-bottom: 8px !important; } .mb-16 { margin-bottom: 16px !important; }
.text-center { text-align: center; }

/******************
  MISC MICRO-INTERACTIONS & ANIMATIONS
******************/
.feature:hover, .card:hover, .testimonial-card:hover, .faq-item:hover, .pro-tip:hover {
  box-shadow: 0 0 30px 6px var(--fz-blue-neon),0 2px 18px 0 rgba(248,203,46,0.06);
}
a, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.19s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.fade-in {
  animation: fadeInUp 0.65s;
}

/******************
   PRINT/ACCESSIBILITY
******************/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main { padding: 0 !important; }
  body { background: #fff !important; color: #111 !important; }
}
