/* RESET & BASELINE 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,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  line-height: 1.5;
  background: #F5F7FA;
  height: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F7FA;
  color: #234033;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #4F8F8C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #246534;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #246534;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li, blockquote, cite {
  font-size: 1rem;
  color: #234033;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #C7E3D8;
  background: #f2f7f8;
  color: #36604c;
  font-style: italic;
  margin: 20px 0;
  padding: 15px 24px;
  border-radius: 10px;
}
cite {
  display: block;
  margin-top: 8px;
  font-size: 0.95rem;
  color: #4F8F8C;
}
strong, b { font-weight: 700; color: #246534; }

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* HEADER & MAIN NAVIGATION */
header {
  background: #F5F7FA;
  box-shadow: 0 2px 10px rgba(76, 94, 94, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  height: 74px;
  position: relative;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #234033;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  background: transparent;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E2F3EC;
  color: #246534;
}
.cta.primary {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #70cea9;
  color: #234033;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 32px;
  box-shadow: 0 4px 16px 0 rgba(54, 108, 86, 0.10);
  font-size: 1.05rem;
  margin-left: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #C7E3D8;
  color: #246534;
  box-shadow: 0 6px 24px 0 rgba(36, 101, 52, 0.10);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #246534;
  cursor: pointer;
  line-height: 1;
  padding: 8px 8px;
  border-radius: 6px;
  transition: background 0.16s;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E2F3EC;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 370px;
  background: #f5fcf3;
  box-shadow: -4px 0 36px rgba(54, 96, 76, 0.22);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.8,0.17,0.42,1);
  z-index: 1200;
  padding: 32px 28px 28px 28px;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.36s cubic-bezier(0.17,0.77,0.38,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #246534;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: 6px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2F3EC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  color: #234033;
  padding: 11px 6px 11px 0;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.18s, color 0.17s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #d6e3de;
  color: #246534;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 960px) {
  header .cta.primary {
    display: none;
  }
}

/* -- SECTIONS & STANDARD SPACING -- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section {
  margin-bottom: 44px;
  padding-top: 20px;
  padding-bottom: 20px;
}
section:last-child {
  margin-bottom: 0;
}
section.accent {
  background: #f2fcf5;
}

/* -- HERO SECTION -- */
.hero {
  background: linear-gradient(140deg, #e8fbf1 0%, #f5f7fa 75%);
  padding: 52px 0 48px 0;
  margin-bottom: 38px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.8rem;
  color: #246534;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(168,210,197,0.10);
}
.hero p {
  font-size: 1.18rem;
  color: #36604c;
  margin-bottom: 28px;
  max-width: 540px;
}

/* -- FEATURES & CARDS -- */
.features, .feature-grid, .card-container, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features .content-wrapper, .card-container, .service-cards {
  width: 100%;
}
.features ul, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-top: 16px;
}
.features ul li, .feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.08rem;
  background: #f8fff9;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 2px 8px 0 rgba(94,168,136,0.06);
  min-width: 180px;
  max-width: 320px;
  margin-bottom: 8px;
}
.features ul li img, .feature-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}

.card-container {
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(192, 242, 212, 0.16);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  width: 100%;
  transition: box-shadow 0.21s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 36px rgba(36, 101, 52, 0.18);
  transform: translateY(-3px) scale(1.02);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 20px 0;
}
.service-card {
  background: #f8fffc;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(153, 227, 192, 0.09);
  padding: 22px 26px 22px 26px;
  margin-bottom: 20px;
  min-width: 225px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.17s;
}
.service-card h3 {
  color: #246534;
  font-size: 1.19rem;
  margin-bottom: 6px;
}
.service-card a {
  color: #70cea9;
  font-weight: 600;
  margin-top: 10px;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 9px;
  background: #e2f3ec;
  transition: background 0.17s, color 0.17s;
}
.service-card a:hover, .service-card a:focus {
  background: #bae5d5;
  color: #246534;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(36, 101, 52, 0.14);
  transform: translateY(-3px) scale(1.014);
}

/* -- ABOUT PREVIEW -- */
.about-preview, .about, .trust {
  background: #f8fffc;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(168, 210, 197, 0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about-preview .trust-badges,
.trust .trust-badges {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #e2f3ec;
  color: #246534;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 11px;
  font-size: 1.01rem;
}
.trust-badges img {
  width: 28px;
  height: 28px;
}

/* -- CTA BANNER -- */
.cta-banner {
  background: linear-gradient(90deg, #e2f3ec 0%, #d6e3de 100%);
  padding: 32px 0 24px 0;
  border-radius: 14px;
  margin-bottom: 44px;
  box-shadow: 0 2px 16px 0 rgba(168,210,197,0.08);
}
.cta-banner .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta-banner h2 {
  font-size: 1.5rem;
  text-align: center;
  color: #246534;
  margin-bottom: 18px;
}
.cta-banner .cta {
  margin-top: 6px;
  font-size: 1.1rem;
}

/* -- TEXT-IMAGE & FLEX SECTIONS -- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* -- TESTIMONIALS -- */
.testimonials {
  background: #f2fcf5;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(153, 227, 192, 0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px 0 rgba(176,221,215,0.11);
  color: #234033;
  transition: box-shadow 0.14s;
}
.testimonial-card blockquote {
  color: #234033;
  border-left: 4px solid #bae5d5;
  background: #f2fcf5;
  box-shadow: none;
  margin: 0;
  padding: 10px 16px;
  font-size: 1.12rem;
}
.testimonial-card cite {
  color: #4F8F8C;
  margin-left: 12px;
  font-style: normal;
  font-size: 1.01rem;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(36,101,52,0.07);
}

/* -- FAQ LIST -- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.faq-list > div {
  background: #f8fffc;
  border-radius: 14px;
  padding: 18px 18px 14px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px 0 rgba(94,168,136,0.06);
}
.faq-list h3 {
  color: #246534;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* -- POLICY/LEGAL -- */
.policy {
  padding: 44px 20px;
  background: #f8fffc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(49,132,87,0.06);
}
.policy h1, .policy h2 {
  color: #246534;
}

/* -- THANK YOU SECTION -- */
.thank-you {
  background: #e8fbf1;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(168, 210, 197, 0.06);
  margin: 40px 0 56px 0;
  padding: 44px 20px 44px 20px;
  text-align: center;
}
.thank-you h1 {
  color: #246534;
  margin-bottom: 18px;
}
.thank-you p {
  color: #234033;
  margin-bottom: 14px;
}

/* -- CONTACT DETAILS & MAP -- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e2f3ec;
  border-radius: 8px;
  padding: 10px 18px;
  min-width: 220px;
}
.contact-details img {
  width: 26px;
  height: 26px;
}
.map {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 10px 18px;
  margin-top: 10px;
}
.map img {
  width: 34px;
  height: 34px;
}

/* -- RESOURCES/BLOG PREVIEW -- */
.blog-preview {
  margin-top: 22px;
}
.blog-preview h3 {
  color: #246534;
  margin-bottom: 8px;
}
.blog-preview ul {
  gap: 10px;
}

/* -- FOOTER -- */
footer {
  background: #e3f7eb;
  padding-top: 36px;
  padding-bottom: 11px;
  margin-top: 38px;
  font-size: 1rem;
  color: #246534;
}
.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #246534;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #C7E3D8;
  color: #234033;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #246534;
}
.footer-contact img {
  width: 22px;
  height: 22px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 6px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  transition: background 0.17s, box-shadow 0.17s;
  box-shadow: 0 1px 3px 0 rgba(127,186,148,0.10);
}
.footer-social a:hover, .footer-social a:focus {
  background: #bae5d5;
  box-shadow: 0 4px 12px 0 rgba(94,168,136,0.12);
}
.footer-social img {
  width: 22px;
  height: 22px;
}
.footer-bottom {
  margin-top: 10px;
  text-align: center;
  color: #4F8F8C;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

/* -- BUTTONS & CTA -- */
.cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #246534;
  background: #e2f3ec;
  padding: 10px 22px;
  border-radius: 32px;
  font-size: 1.08rem;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(94,168,136,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.17s, box-shadow 0.15s;
  display: inline-block;
  margin-top: 12px;
}
.cta:hover, .cta:focus {
  background: #bae5d5;
  color: #246534;
  box-shadow: 0 4px 18px 0 rgba(127,186,148,0.15);
}

/* -- COOKIE CONSENT BANNER & MODAL -- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 8000;
  background: #ffffff;
  box-shadow: 0 -4px 24px 0 rgba(110,180,140,0.12);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: cookieBannerIn 0.53s cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes cookieBannerIn { from { transform: translateY(120%); opacity:0;} to {transform: translateY(0); opacity:1;} }
.cookie-banner p {
  color: #234033;
  font-size: 1.05rem;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 1.01rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(127,186,148,0.08);
  cursor: pointer;
  transition: background 0.2s, color 0.19s;
}
.cookie-btn.accept {
  background: #70cea9;
  color: #234033;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #246534;
  color: #f8fffc;
}
.cookie-btn.reject {
  background: #f8fffc;
  color: #70cea9;
  border: 1px solid #bae5d5;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e2f3ec;
  color: #234033;
}
.cookie-btn.settings {
  background: #bae5d5;
  color: #246534;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #70cea9;
  color: #234033;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,101,52,0.35);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.27s;
  animation:overlayIn 0.38s cubic-bezier(0.19, 1, 0.22, 1);
}
@keyframes overlayIn { from { opacity: 0 } to { opacity: 1 } }
.cookie-modal {
  background: #F8FFFC;
  border-radius: 18px;
  box-shadow: 0 12px 52px 0 rgba(36, 101, 52, 0.20);
  padding: 30px 24px 22px 24px;
  max-width: 390px;
  width: 95%;
  z-index: 9100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  animation: cookieModalIn 0.37s cubic-bezier(0.18,0.9,0.35,1.02);
}
@keyframes cookieModalIn { from { transform: scale(0.8); opacity: 0;} to {transform: scale(1); opacity:1;} }
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e2f3ec;
  border-radius: 9px;
  padding: 10px 14px;
}
.cookie-category span {
  font-weight: 600;
  color: #246534;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #C7E3D8;
  border-radius: 30px;
  position: relative;
  border: none;
  outline: none;
  margin-left: 14px;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-toggle[data-active="true"] {
  background: #70cea9;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(36,101,52,0.05);
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.17s;
}
.cookie-toggle[data-active="true"]::after {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 13px;
}
.cookie-modal-actions .cookie-btn {
  flex: 1 1 auto;
}

@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    gap: 24px;
  }
  .service-cards, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 99vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, section {
    padding-top: 14px;
    padding-bottom: 12px;
  }
  .hero {
    padding: 32px 0 38px 0;
  }
  .hero h1 {
    font-size: 1.85rem;
    margin-bottom: 12px;
  }
  h1 { font-size: 1.5rem;}
  h2 { font-size: 1.22rem;}
  h3 { font-size: 1rem;}
  .features, .feature-grid,.service-cards, .card-container, .content-grid, .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 13px;
  }
  .card, .service-card, .about-preview, .about, .trust, .testimonials, .faq-list > div {
    padding: 13px 8px;
  }
  .cta-banner {
    padding: 18px 0 15px 0;
    border-radius: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .contact-details {
    flex-direction: column;
    gap: 9px;
  }
  .map {
    padding: 7px 10px;
  }
  .policy, .thank-you {
    padding: 22px 5px;
  }
}
@media (max-width:500px) {
  html {
    font-size: 14px;
  }
  .footer-social a {
    width: 28px;
    height: 28px;
  }
  .footer-social img {
    width: 16px;
    height: 16px;
  }
  .logo img {
    height: 40px;
  }
  .policy, .thank-you {
    padding: 14px 2px;
  }
}

/* FOCUS VISIBLE */
:focus-visible {
  outline: 2px solid #70cea9;
  outline-offset: 2px;
}

/* MICRO-INTERACTIONS/ANIMATIONS */
.card, .service-card, .testimonial-card, .cta, .cookie-btn {
  transition: box-shadow 0.18s, background 0.19s, color 0.18s, transform 0.17s;
}

/* HIDE SCROLLBAR FOR MOBILE MENU */
.mobile-menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
}
.mobile-menu::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

/* Z-INDEX STABILITY FOR OVERLAYS */
.mobile-menu,
.mobile-menu-toggle,
.mobile-menu-close { z-index: 1200 !important; }

/* PRINT FRIENDLY (just minimal) */
@media print {
  header, .mobile-menu, .cta-banner, .footer-main, .footer-social, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  .container, .section, section { max-width: 100% !important; padding: 0 !important; }
}
