/* =========================================================
   CSS RESET & NORMALIZE
=========================================================== */
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, menu, nav, output,
ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  /* Soft blue pastel background for root */
  box-sizing: border-box;
  background: #F4F8FB;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #274D88;
  background: #F4F8FB;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: #3377B6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A42017;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #274D88;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
  color: #274D88;
}
p {
  margin-bottom: 16px;
  color: #373F5B;
}

/* =========================================================
   BRAND COLORS FOR SOFT PASTEL STYLE
=========================================================== */
:root {
  --primary: #274D88;
  --secondary: #F4F8FB;
  --accent: #A42017;
  --pastel-blue: #B8D6F8;
  --pastel-pink: #FED6E3;
  --pastel-yellow: #FFF7D4;
  --pastel-green: #D6F9E7;
  --pastel-lilac: #EBE6F7;
  --shadow-light: 0 4px 24px 0 rgba(100, 115, 176, 0.10);
  --cta-gradient: linear-gradient(90deg, #B8D6F8 0%, #FED6E3 100%);
  --header-bg: #FFFFFFCC;
}

/* =========================================================
   LAYOUT & CONTAINER
=========================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

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

/* =========================================================
   HEADER & NAVIGATION
=========================================================== */
header {
  background: var(--header-bg);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  backdrop-filter: blur(6px);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 18px 0;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #274D88;
  padding: 8px 12px;
  border-radius: 20px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}

.cta.primary-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--cta-gradient);
  color: #274D88;
  border: none;
  border-radius: 28px;
  font-weight: 600;
  font-size: 17px;
  padding: 12px 32px;
  box-shadow: 0 2px 12px 0 rgba(183, 214, 248, 0.3);
  cursor: pointer;
  transition: box-shadow 0.22s, background 0.22s, color 0.18s;
}
.cta.primary-btn:hover, .cta.primary-btn:focus {
  background: var(--pastel-pink);
  color: var(--primary);
  box-shadow: 0 8px 32px 0 rgba(222, 133, 171, 0.16);
}

/* =========================================================
   MOBILE NAVIGATION
=========================================================== */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  border-radius: 10px;
  padding: 6px 14px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--pastel-pink);
  color: var(--accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 40px rgba(100,115,176,0.08);
  z-index: 3000;
  padding: 38px 26px 26px 26px;
  transform: translateX(-120vw);
  transition: transform 0.38s cubic-bezier(.65,.05,.35,1);
  opacity: 0;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--pastel-lilac);
  color: #274D88;
  border: none;
  font-size: 2.25rem;
  border-radius: 50%;
  padding: 2px 16px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-pink);
  color: var(--accent);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 20px;
  color: #234d88;
  padding: 14px 8px 12px 0px;
  border-radius: 18px;
  background: transparent;
  font-weight: 500;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}

/* Hide main nav and CTA on mobile when menu is open */
@media (max-width: 1040px) {
  .main-nav, .cta.primary-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1041px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================================================
   HERO SECTION & BANNERS
=========================================================== */
.hero-section {
  background: var(--pastel-blue);
  border-radius: 0 0 40px 40px;
  box-shadow: var(--shadow-light);
  padding-top: 32px;
  padding-bottom: 48px;
  margin-bottom: 44px;
}
.hero-section .text-section {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.hero-section h1 {
  color: #274D88;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  font-weight: 800;
}
.hero-section p {
  color: #374D74;
  font-size: 1.15rem;
  margin-bottom: 26px;
}
.hero-section .cta.primary-btn {
  margin-top: 12px;
  font-size: 18px;
  padding: 13px 38px;
}

/* =========================================================
   FEATURES & SERVICE CARDS
=========================================================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 0 0;
}
.feature-card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 26px 20px 26px;
  background: #fffefc;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(183,214,248,0.08);
  margin-bottom: 20px;
  transition: box-shadow 0.23s, background 0.17s;
  border: 2px solid #E2EBF8;
  position: relative;
  min-width: 230px;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 9px 40px 0 rgba(222,133,171,0.08);
  background: var(--pastel-yellow);
  border-color: var(--pastel-blue);
  z-index: 1;
}
.feature-card img {
  height: 48px;
  width: 48px;
  margin-bottom: 4px;
}
.feature-card h3 {
  font-size: 1.09rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #274D88;
  font-weight: 700;
}
.feature-card p {
  color: #374D74;
}
.feature-card .price {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #A42017;
  background: var(--pastel-pink);
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 14px;
  margin-top: 7px;
}

/* Lists under cards */
ul {
  margin-bottom: 18px;
}
ul li::marker {
  color: var(--primary);
}

/* =========================================================
   TESTIMONIALS & TEAM CARDS
=========================================================== */
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px 28px 20px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px 20px 28px;
  min-width: 235px;
  background: #FFF7D4;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(224, 176, 240, 0.07);
  transition: box-shadow 0.19s, background 0.17s;
  color: #2A3758;
}
.testimonial-card p {
  font-size: 1rem;
  color: #2A3758;
}
.testimonial-card strong {
  color: #274D88;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: var(--pastel-pink);
  box-shadow: 0 10px 40px 0 rgba(183, 214, 248, 0.13);
}


/* =========================================================
   CONTACT & ABOUT SECTIONS
=========================================================== */
.about-section, .contact-section, .footer-section {
  background: #FFF;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(183, 214, 248, 0.10);
  margin-bottom: 60px;
  padding: 40px 24px 36px 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 18px;
}
.about-section h2, .contact-section h2, .footer-section h1 {
  color: var(--primary);
  font-size: 1.75rem;
  margin-bottom: 14px;
}
.contact-information p, .opening-hours p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #373F5B;
}
.contact-information img, .opening-hours img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.map-embed {
  margin-top: 12px;
  margin-bottom: 18px;
}
.map-embed img {
  width: 22px; height: 22px; margin-right: 6px;
}

/* Special case for thank you page */
.hero-section.thank-you {
  background: var(--pastel-pink);
}

/* =========================================================
   FOOTER
=========================================================== */
footer {
  background: #F4F8FB;
  box-shadow: 0 -2px 12px 0 rgba(183, 214, 248, 0.15);
  padding-top: 18px;
  padding-bottom: 12px;
  font-size: 1rem;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E2EBF8;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #274D88;
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 3px 0 3px 0;
  font-size: 15px;
  transition: color 0.16s;
  border-radius: 9px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A42017;
  background: var(--pastel-yellow);
}
.footer-contact p {
  font-size: 14px;
  color: #373F5B;
  margin-bottom: 4px;
}
footer p {
  font-size: 15px;
  color: #8B91A8;
  text-align: center;
  margin-top: 2px;
}
footer img {
  height: 48px;
}

/* =========================================================
   BUTTONS
=========================================================== */
button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 23px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 26px;
  background: var(--cta-gradient);
  color: #274D88;
  cursor: pointer;
  transition: background 0.15s, color 0.19s, box-shadow 0.23s;
  box-shadow: 0 2px 6px 0 rgba(183, 214, 248, 0.12);
}
button:hover, button:focus,
input[type="button"]:hover, input[type="submit"]:hover {
  background: var(--pastel-pink);
  color: var(--primary);
  outline: none;
}

/* FOR CTA LINKS styled as buttons */
a.cta {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

/* =========================================================
   RESPONSIVE FLEXBOX PATTERNS
=========================================================== */
.card-container, .feature-grid, .testimonial-cards, .footer-flex, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .feature-grid,
  .testimonial-cards,
  .footer-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 18px;
  }
  .section, .about-section, .contact-section, .footer-section {
    padding: 26px 8px;
    border-radius: 18px;
  }
  .hero-section {
    padding: 37px 4vw 37px 4vw;
    border-radius: 0 0 22px 22px;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
=========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 18px 0 rgba(183,214,248,0.17);
  border-top: 3px solid var(--pastel-blue);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 18px 18px 18px;
  max-width: 480px;
  margin-left: auto;
  margin-right: 28px;
  border-radius: 18px 18px 0 0;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}
.cookie-banner p {
  color: #274D88;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  margin-top: 4px;
}
.cookie-banner button {
  padding: 9px 18px;
  font-size: 1rem;
  background: var(--cta-gradient);
  color: #274D88;
  border: none;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(183,214,248,0.07);
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button.settings {
  background: var(--pastel-blue);
  color: #274D88;
  border: 2px solid #B8D6F8;
}
.cookie-banner button.accept {
  background: var(--pastel-green);
  color: #22444B;
}
.cookie-banner button.reject {
  background: var(--pastel-pink);
  color: #A42017;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--pastel-yellow);
  color: var(--primary);
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(180, 183, 210, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.24s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 90vw;
  border-radius: 20px;
  padding: 32px 24px 20px 24px;
  box-shadow: 0 8px 48px 0 rgba(100,115,176,0.18);
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 9999;
  animation: fade-in-modal 0.4s ease 0s 1;
}
@keyframes fade-in-modal {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #274D88;
  font-weight: 700;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-category label {
  font-size: 1rem;
  color: #234D88;
  font-weight: 500;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 12px;
  background: var(--pastel-lilac);
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  margin-right: 8px;
  border: 2px solid var(--pastel-blue);
}
.cookie-toggle[data-checked="true"] {
  background: var(--pastel-green);
  border-color: #8FDFB8;
}
.cookie-toggle:after {
  content: '';
  display: block;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1px; left: 1px;
  box-shadow: 0 1px 1px 0 rgba(85,150,235,0.1);
  transition: left 0.2s;
}
.cookie-toggle[data-checked="true"]:after {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 18px;
  background: var(--cta-gradient);
  color: #274D88;
  border-radius: 18px;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-actions button.cancel {
  background: var(--pastel-pink);
  color: #A42017;
}
.cookie-modal-actions button.save {
  background: var(--pastel-green);
  color: #22444B;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: var(--pastel-blue);
  color: #274D88;
}

/* Cookie category description */
.cookie-modal .desc {
  font-size: 0.97rem;
  color: #344765;
  margin: 2px 0 13px 0;
}

@media (max-width: 580px) {
  .cookie-banner {
    right: 0;
    left: 0;
    margin-right: 0;
    max-width: 100vw;
    padding: 16px 7px;
    border-radius: 12px 12px 0 0;
    font-size: 0.94rem;
  }
  .cookie-modal {
    padding: 18px 5vw 18px 5vw;
    max-width: 97vw;
    font-size: 0.94rem;
  }
}

/* =========================================================
   FORM INPUTS (OPTIONAL, if used on future pages)
=========================================================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #B8D6F8;
  border-radius: 13px;
  padding: 9px 14px;
  font-size: 1rem;
  background: #fff;
  color: #274D88;
  box-shadow: 0 2px 7px 0 rgba(183,214,248,0.06);
  transition: border 0.15s, box-shadow 0.19s;
  margin-bottom: 11px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #A42017;
  box-shadow: 0 2px 12px 0 rgba(183,214,248,0.15);
}

/* =========================================================
   MICRO-INTERACTIONS & HOVER EFFECTS
=========================================================== */
.feature-card, .testimonial-card, .cta.primary-btn, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.19s, background 0.15s, color 0.11s;
}

/* Subtle scale on cards */
.feature-card:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px 0 rgba(183,214,248,0.10);
  z-index: 2;
}

.cta.primary-btn:active,
button:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px 0 rgba(222,133,171,0.06);
}

/* =========================================================
   TYPOGRAPHY & PASTEL FONT HIERARCHY
=========================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap');

body, p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #374D74;
}
h1, h2, h3, h4, .cta.primary-btn, nav a, .feature-card h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

h1 {
  font-size: 2.25rem;
  font-weight: 800;
}
h2 {
  font-size: 1.45rem;
  font-weight: 700;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

/* Soft dreamy style for blockquotes */
blockquote {
  padding: 18px 24px;
  margin: 18px 0;
  background: var(--pastel-lilac);
  border-left: 5px solid var(--pastel-blue);
  border-radius: 10px;
  font-style: italic;
  color: #234d88;
}

/* =========================================================
   SPACING & LAYOUT – ENSURE NO OVERLAPS, SMOOTH RWD
=========================================================== */
.section, .about-section, .contact-section, .footer-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .testimonial-cards, .footer-flex, .content-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Small spacing adjustments for mobile */
@media (max-width: 480px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .section, .about-section, .contact-section, .footer-section {
    padding: 18px 4px;
    border-radius: 7px;
  }
  .card-container, .feature-grid, .testimonial-cards {
    gap: 13px;
  }
}

/* =========================================================
   PRINT CLEANUP
=========================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
