/* =========================================================
   CSS RESET & BASE STYLES
========================================================= */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F3F6F9;
  color: #2A3142;
  font-family: 'PT Serif', Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
  border-style: none;
}
a {
  color: #23577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B32B;
  outline: none;
}

strong, b {
  font-weight: bold;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* =========================================================
   TYPOGRAPHY & ELEGANT CLASSIC SCALES
========================================================= */
@font-face {
  font-family: 'PT Serif';
  font-style: normal;
  font-weight: 400;
  src: local('PT Serif'), local('PTSerif'),
       url('https://fonts.googleapis.com/css?family=PT+Serif:400,700&display=swap');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: local('Montserrat'),
       url('https://fonts.googleapis.com/css?family=Montserrat:600&display=swap');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Serif', Georgia, 'Times New Roman', Times, serif;
  color: #153041;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
}
h1 { font-size: 2.75rem; letter-spacing: -1px; margin-bottom: 24px; }
h2 { font-size: 2rem;   margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5,
h6 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol, li { font-size: 1rem; letter-spacing: 0.01em; color: #2A3142; }

p:not(:last-child) {
  margin-bottom: 1rem;
}

.text-section ul, .text-section ol, .content-wrapper ul, .content-wrapper ol {
  margin: 0 0 1.2em 1.4em;
  padding-left: 1.2em;
  color: #4B5271;
}
.text-section li, .content-wrapper li {
  margin-bottom: 0.5em;
}

.text-section strong {
  color: #153041;
}

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


/* =========================================================
   HEADER & NAVIGATION
========================================================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(35,87,122,0.06);
  border-bottom: 1px solid #EBEFF2;
  position: sticky;
  top: 0;
  z-index: 1005;
  min-height: 72px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'PT Serif', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #2A3142;
  position: relative;
  padding: 10px 0;
  transition: color 0.2s;
}
.main-nav a:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0%;
  height: 2px;
  background: #F7B32B;
  transition: width 0.2s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 90%;
}
.main-nav a.cta-btn {
  background: #23577A;
  color: #fff;
  border-radius: 6px;
  padding: 8px 26px;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(35,87,122,0.07);
  border: none;
  font-size: 1rem;
  transition: background 0.2s, transform 0.18s;
  letter-spacing: 0.04em;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #F7B32B;
  color: #153041;
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: #23577A;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 6px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F7B32B;
  color: #153041;
  outline: none;
  transform: scale(1.03);
}

/* =========================================================
   MOBILE NAVIGATION OVERLAY
========================================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 87, 122, 0.97);
  z-index: 2020;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 12;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7B32B;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 54px;
  width: 100%;
  align-items: flex-start;
  padding: 0 48px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'PT Serif', serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 4px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: background 0.22s, color 0.18s;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7B32B;
  color: #153041;
  outline: none;
}

/* =========================================================
   HERO SECTIONS
========================================================= */
.hero {
  background: #F3F6F9 url('../assets/hero-pattern.png') repeat top left;
  border-bottom: 1px solid #EBEFF2;
  padding: 42px 0 46px 0;
  position: relative;
  min-height: 260px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  color: #23577A;
  margin-bottom: 16px;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 2.4rem;
}
.hero p {
  font-size: 1.18rem;
  color: #36475a;
  max-width: 560px;
  margin: 0 auto 1.6em auto;
}

/* =========================================================
   CTA BUTTONS
========================================================= */
.cta-btn {
  display: inline-block;
  background: #F7B32B;
  color: #153041;
  font-family: 'Montserrat', 'PT Serif', serif;
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 6px;
  box-shadow: 0 3px 18px rgba(247,179,43,0.11);
  padding: 12px 36px;
  margin-top: 10px;
  text-align: center;
  outline: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.18s;
  min-width: 170px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #23577A;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* =========================================================
   CARD LAYOUTS & FLEX SPACING
========================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(35,87,122,0.11);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  min-width: 260px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  border: 1px solid #EBEFF2;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(35,87,122,0.13);
  transform: translateY(-3px) scale(1.016);
  border-color: #F7B32B;
  z-index: 8;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}

/* Feature grid (icon and description) */
.feature-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.feature-grid > div, .service-list > div {
  background: #fff;
  box-shadow: 0 2px 14px rgba(35, 87, 122, 0.07);
  border-radius: 14px;
  padding: 28px 22px 24px 22px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #EBEFF2;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 8px 28px rgba(35,87,122,0.13);
  border-color: #F7B32B;
}
.feature-grid img,
.service-list img {
  height: 48px;
  margin-bottom: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.offer-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px rgba(35,87,122,0.08);
  padding: 28px 22px 17px 22px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 320px;
  margin-bottom: 20px;
  border: 1px solid #EBEFF2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s, border 0.18s;
}
.offer-item strong {
  color: #23577A;
  font-size: 1.03rem;
}
.offer-item:hover, .offer-item:focus-within {
  border-color: #F7B32B;
  box-shadow: 0 8px 32px rgba(35,87,122,0.12);
}

.team-highlights {
  background: #F3F6F9;
  border-radius: 10px;
  padding: 18px 22px 12px 22px;
  margin-top: 22px;
  font-size: 1.05em;
  color: #2A3142;
}
.team-highlights ul {
  margin-top: 10px;
  padding-left: 24px;
}
.team-highlights li {
  margin-bottom: 6px;
  font-family: 'PT Serif', Georgia, serif;
}

/* Blog post list and preview */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.post-preview {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(35,87,122,0.09);
  padding: 20px 18px 14px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #EBEFF2;
  transition: box-shadow 0.16s, border 0.16s;
}
.post-preview h3 {
  color: #23577A;
  font-size: 1.17rem;
}
.post-preview span {
  color: #4B5271;
  font-size: 0.95rem;
}
.post-preview:hover, .post-preview:focus-within {
  border-color: #F7B32B;
  box-shadow: 0 5px 24px rgba(35,87,122,0.11);
}


/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(35,87,122,0.09);
  border-left: 6px solid #F7B32B;
  border: 1px solid #EBEFF2;
  min-width: 240px;
  max-width: 540px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.testimonial-card p {
  font-size: 1.14rem;
  font-family: 'PT Serif', Georgia, serif;
  color: #153041;
  margin-bottom: 10px;
  line-height: 1.6;
}
.testimonial-card span {
  font-size: 1rem;
  font-style: italic;
  color: #23577A;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 26px rgba(35,87,122,0.15);
  border-left-color: #23577A;
}

/* Ensure high contrast in testimonial/review cards (dark text on light bg) */
.testimonial-card, .testimonial-card * {
  color: #153041 !important;
  background: #fff !important;
}


/* =========================================================
   SECTIONS & LAYOUT WRAPPERS
========================================================= */
main {
  display: flex;
  flex-direction: column;
  gap: 0px;
  min-height: 70vh;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 0;
  margin: 0 auto;
}
.section > .container > .content-wrapper, .info > .container > .content-wrapper {
  padding: 0;
}

.map-placeholder {
  display: flex;
  align-items: center;
  background: #f7f7fa;
  border-radius: 10px;
  padding: 20px 14px;
  margin-top: 12px;
  color: #9caab9;
  font-size: 0.98rem;
  min-height: 68px;
}


/* =========================================================
   FOOTER STYLES
========================================================= */
footer {
  background: #fff;
  border-top: 1px solid #EBEFF2;
  box-shadow: 0 -1px 8px rgba(35,87,122,0.04);
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 28px;
  padding-bottom: 16px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
  border-bottom: 1px solid #EBEFF2;
  padding-bottom: 16px;
  margin-bottom: 6px;
}
.footer-top img {
  height: 34px;
  width: auto;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-top nav a {
  color: #23577A;
  font-weight: 700;
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1rem;
  transition: color 0.14s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  color: #F7B32B;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 8px;
}
.contact-snippet {
  font-family: 'PT Serif', Georgia, serif;
  line-height: 1.7;
  color: #4B5271;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: #23577A;
  font-size: 1rem;
}
.footer-links a:hover, .footer-links a:focus {
  color: #F7B32B;
}


/* =========================================================
   COOKIE CONSENT BANNER & MODAL
========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #2A3142;
  box-shadow: 0 -2px 16px rgba(35,87,122,0.13);
  border-top: 2px solid #F7B32B;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 26px;
  z-index: 2222;
  animation: cookie-banner-fadein 0.8s;
}
@keyframes cookie-banner-fadein {
  from { transform: translateY(30%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.1em;
  max-width: 420px;
  color: #2A3142;
}
.cookie-banner .cookie-btn {
  background: #F7B32B;
  color: #153041;
  font-family: 'Montserrat', 'PT Serif', serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  padding: 9px 22px;
  margin-right: 10px;
  transition: background 0.19s, color 0.19s;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #23577A;
  color: #fff;
  outline: none;
}
.cookie-banner .cookie-secondary {
  background: #F3F6F9;
  color: #23577A;
  border: 1px solid #EBEFF2;
}
.cookie-banner .cookie-secondary:hover,
.cookie-banner .cookie-secondary:focus {
  background: #23577A;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%) scale(0.98);
  background: #fff;
  color: #2A3142;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(35,87,122,0.16);
  z-index: 3333;
  max-width: 410px;
  width: 92vw;
  padding: 32px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-fadein 0.25s cubic-bezier(.44,.09,.51,.87);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; transform: translate(-50%,-60%) scale(0.97); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.37rem;
  margin-bottom: 4px;
  color: #23577A;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-switch {
  width: 38px;
  height: 21px;
  border-radius: 14px;
  background: #EBEFF2;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal .cookie-switch.enabled {
  background: #F7B32B;
}
.cookie-modal .cookie-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(35,87,122,0.03);
  transition: left 0.18s;
}
.cookie-modal .cookie-switch.enabled::after {
  left: 20px;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
  padding: 10px 0;
  width: 100%;
}
.cookie-modal .cookie-close {
  background: none;
  border: none;
  color: #23577A;
  font-size: 1.5rem;
  position: absolute;
  top: 18px;
  right: 16px;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #F7B32B;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #2A3142;
}
.cookie-modal .cookie-category.essential label {
  color: #aaa;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,87,122,0.33);
  z-index: 3332;
  animation: fadein 0.22s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========================================================
   INFO SECTIONS (for policy/legal pages)
========================================================= */
.info {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(35,87,122,0.07);
  border: 1px solid #EBEFF2;
  margin-top: 38px;
  padding: 30px 0 38px 0;
}
.info h1, .info h2, .info h3 {
  color: #23577A;
  text-align: left;
}
.info .text-section {
  margin-bottom: 28px;
}


/* =========================================================
   RESPONSIVE LAYOUTS (MOBILE FIRST)
========================================================= */
@media (max-width: 1020px) {
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .content-grid,
  .feature-grid,
  .service-list,
  .offer-grid,
  .blog-post-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid > div,
  .service-list > div,
  .offer-item,
  .card {
    max-width: 100%;
    min-width: 0;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 18px 12px;
    gap: 11px;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
  .team-highlights {
    padding: 15px 10px 8px 10px;
    font-size: 1em;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-top nav, .footer-bottom nav {
    flex-direction: column;
    gap: 8px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 10px 13px 10px;
  }
  .cookie-banner p {
    font-size: 0.98em;
  }
  .cookie-modal {
    padding: 22px 10px 15px 10px;
    font-size: 1em;
  }
}
@media (max-width: 550px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  .logo img {
    height: 34px;
  }
}


/* =========================================================
   UTILITIES
========================================================= */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.d-flex { display: flex !important; }
.flex-center { align-items: center !important; justify-content: center !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-4 { margin-bottom: 32px !important; }


/* =========================================================
   MICRO-INTERACTIONS & EFFECTS
========================================================= */
.card,
.feature-grid > div,
.offer-item,
.post-preview,
.testimonial-card,
.cookie-banner,
.cta-btn,
.mobile-menu,
.cookie-modal {
  transition: box-shadow 0.18s cubic-bezier(.44,.09,.51,.87),
              transform 0.15s,
              border 0.18s;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid #F7B32B;
  border-radius: 4px;
}

::-webkit-input-placeholder { color: #9daab9; }
::-moz-placeholder { color: #9daab9; }
:-ms-input-placeholder { color: #9daab9; }
::placeholder { color: #9daab9; }


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