/* ---- CSS RESET ---- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* Set box-sizing universally */
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2b20;
  background-color: #FFFFFF;
  min-height: 100vh;
  /* Nature inspired background tint */
  background-image: repeating-linear-gradient(135deg, #EEE9DD 0 14px, transparent 14px 28px),
                    linear-gradient(120deg, #F4FAF6 0 100%);
  background-size: 70px 70px, 100% 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #356729;
  text-decoration: none;
  transition: color 0.17s;
}
a:hover, a:focus {
  color: #FFBC27;
  outline: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1.3em;
}
li + li {
  margin-top: 8px; /* natural, organic rhythm */
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #212a1d;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }
p, .subheadline {
  font-size: 1.05rem;
  color: #354B37;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.2rem;
  color: #49724b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 22px;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.89rem;
  color: #76846b;
}

/* ---- BRAND COLORS / NATURE ORGANIC PALETTE ---- */
:root {
  --brand-primary: #163E63;
  --brand-secondary: #FFBC27;
  --brand-accent: #FFFFFF;
  --organic-green: #3e6840;
  --earth-brown: #9e8b6a;
  --earth-tan: #efe7d5;
  --leaf-green: #6BAB3F;
  --deep-forest: #212a1d;
  --wood-shadow: rgba(34,42,29,0.14);
  --cream-bg: #f4faf6;
}

/* ---- LAYOUT: FLEXBOX ONLY! ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--cream-bg);
  border-radius: 34px 18px 28px 44px / 38px 24px 22px 32px;
  /* organic curves */
  box-shadow: 0 2px 10px var(--wood-shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 30px 16px 26px 40px / 34px 20px 18px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--wood-shadow);
  padding: 32px 22px;
  flex: 1 1 320px;
  min-width: 270px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(34,42,29,0.17), 0 2px 10px var(--wood-shadow);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fffef8;
  border: 1px solid #e1decf;
  border-radius: 24px 32px 18px 38px / 28px 22px 34px 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--wood-shadow);
  color: #23422b;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px 1px rgba(109,171,63,0.13), 0 2px 10px var(--wood-shadow);
  /* earthy depth */
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #23422b;
  margin: 0 0 4px 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #67995c;
  margin-left: 16px;
  font-style: italic;
}

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

/* ---- FEATURE GRID ---- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-grid li {
  background-color: #eef6ec;
  border-radius: 18px 32px 20px 28px / 26px 14px 18px 22px;
  box-shadow: 0 2px 8px var(--wood-shadow);
  color: #23422b;
  padding: 22px 18px 18px 18px;
  min-width: 215px;
  flex: 1 1 220px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ---- HERO SECTION ---- */
.hero-section {
  background-color: #f4faf6;
  background-image: linear-gradient(115deg, #f4faf6 56%, #ebdca8 100%);
  border-radius: 0 0 56px 56px / 0 0 36px 36px;
  margin-bottom: 60px;
  padding: 58px 0 54px 0;
}
.hero-section .container,
.hero-section .content-wrapper {
  align-items: center;
}
.hero-section h1 {
  color: var(--organic-green);
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero-section .subheadline {
  color: #49724b;
  text-align: center;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: linear-gradient(89deg, var(--leaf-green) 30%, #FFBC27 100%);
  color: #163E63;
  padding: 14px 38px;
  border: none;
  border-radius: 32px 20px 26px 28px / 28px 24px 20px 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px var(--wood-shadow);
  cursor: pointer;
  text-shadow: 0 1px 1px rgba(255,255,255,0.15);
  transition: background 0.18s, box-shadow 0.16s, color 0.17s;
  margin: 12px 0;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(89deg, #FFBC27 40%, var(--leaf-green) 100%);
  color: #193e28;
  box-shadow: 0 6px 18px 0 rgba(109,171,63,0.21);
  outline: none;
}

.btn-secondary {
  background: #fffef7;
  color: var(--organic-green);
  padding: 13px 29px;
  font-weight: 600;
  border: 2px solid var(--leaf-green);
  border-radius: 25px 20px 24px 15px / 25px 14px 19px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin: 7px 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(109,171,63,0.06);
  transition: background 0.18s, color 0.18s, border-color 0.16s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #eef6ec;
  color: #163E63;
  border-color: #FFBC27;
  outline: none;
}

/* ---- HEADER ---- */
header {
  background: #fff;
  box-shadow: 0 0 14px 0 rgba(22,62,99,0.03);
  border-radius: 0 0 28px 28px / 0 0 18px 18px;
  position: relative;
  z-index: 100;
  margin-bottom: 6px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #29452a;
  font-weight: 600;
  font-size: 1.01rem;
  border-radius: 11px;
  padding: 9px 14px;
  transition: background 0.18s, color 0.16s;
}
header nav a:hover, header nav a.active {
  background: #eef6ec;
  color: #163e63;
}
header a.btn-primary {
  margin: 0 0 0 16px;
}
header img {
  height: 44px;
  width: auto;
  border-radius: 10px;
  background: transparent;
}

/* ---- FOOTER ---- */
footer {
  background: #f4faf6;
  border-radius: 36px 36px 0 0 / 18px 18px 0 0;
  box-shadow: 0 -4px 16px var(--wood-shadow);
  padding: 36px 0 0 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #29452a;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px 12px;
  transition: background 0.17s, color 0.14s;
}
footer nav a:hover, footer nav a.active {
  background: #e1f2dd;
  color: #163e63;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #3E6840;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 7px;
}
.brand-footer img {
  height: 38px;
  width: auto;
  border-radius: 14px;
  background: transparent;
}
.brand-footer span {
  color: #C1AE8F;
  font-size: 0.97rem;
}

/* ---- CLIENT LOGOS ---- */
.client-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.client-logo-row img {
  background: #eef6ec;
  border-radius: 18px;
  padding: 12px;
  height: 58px;
  width: auto;
  transition: box-shadow 0.17s, background 0.18s;
  box-shadow: 0 2px 10px var(--wood-shadow);
}
.client-logo-row img:hover {
  background: #d8e8d6;
  box-shadow: 0 6px 19px rgba(159,171,111,0.22);
}

/* ---- PRICING TABLE ---- */
.pricing-table-section table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 24px 34px 24px 36px / 30px 13px 18px 18px;
  box-shadow: 0 2px 8px var(--wood-shadow);
  margin-bottom: 18px;
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
}
.pricing-table-section th, .pricing-table-section td {
  padding: 15px 18px;
  text-align: left;
}
.pricing-table-section th {
  background: #eef6ec;
  color: #23422b;
}
.pricing-table-section tr {
  border-bottom: 1px solid #edede7;
}
.pricing-table-section tr:last-child {
  border-bottom: none;
}
.pricing-legend {
  list-style: disc inside;
  color: #4a5f43;
  opacity: 0.89;
  font-size: 0.99rem;
}

/* ---- CTA STYLES ---- */
.cta-section .content-wrapper,
.contact-cta .content-wrapper,
.cta-customer-support .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 15px;
}
.cta-section .btn-primary, .contact-cta .btn-primary, .cta-customer-support .btn-primary {
  margin: 0 auto 14px auto;
}

/* ---- LEGAL / TEXT SECTIONS ---- */
.legal-section {
  background: #fffef9;
  border-radius: 28px;
  box-shadow: 0 2px 14px var(--wood-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 24px;
}
.text-section ul {
  margin-bottom: 16px;
}
.text-section a {
  color: var(--brand-primary);
  text-decoration: underline;
}

/* -- Responsive Utility Classes -- */
.hide-desktop {
  display: none !important;
}
.hide-mobile {
  display: block !important;
}

/* ---- MOBILE NAV --------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  color: var(--organic-green);
  font-size: 2.2rem;
  padding: 5px 14px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 2px 9px var(--wood-shadow);
  margin-left: 14px;
  transition: background 0.13s, color 0.18s;
  z-index: 1200;
}
.mobile-menu-toggle:focus {
  background: #eef6ec;
  outline: 2px solid #FFBC27;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f4faf6;
  box-shadow: 0 0 28px 10px #c9b35933;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.4,1.15,.6,1);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  pointer-events: none;
  opacity: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 20px 0;
  background: #eef6ec;
  border: none;
  font-size: 2.1rem;
  border-radius: 18px;
  color: var(--organic-green);
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
  box-shadow: 0 1px 9px var(--wood-shadow);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFBC27;
  background: #e1f2dd;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 7px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 14px 0;
  color: #163E63;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 12px;
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
  min-width: 180px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eef6ec;
  color: #6BAB3F;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #eaf6e3;
  border-top: 3px solid #6BAB3F;
  box-shadow: 0 -2px 20px rgba(34,42,29,0.11);
  padding: 22px 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 1500;
  animation: slideUpCookie 0.54s cubic-bezier(.39,1.33,.74,1.03);
  font-family: 'Roboto', Arial, sans-serif;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #295534;
  font-size: 1.04rem;
  flex: 1;
  margin: 0 13px 0 0;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn {
  padding: 11px 23px;
  border-radius: 28px 18px 22px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 5px var(--wood-shadow);
  transition: background 0.17s, color 0.16s;
}
.cookie-banner .btn-accept {
  background: linear-gradient(89deg, #6BAB3F 70%, #FFBC27 100%);
  color: #163E63;
}
.cookie-banner .btn-accept:hover {
  background: linear-gradient(89deg, #FFBC27 60%, #6BAB3F 100%);
  color: #193e28;
}
.cookie-banner .btn-reject {
  background: #e4bcc2;
  color: #163E63;
}
.cookie-banner .btn-reject:hover {
  background: #D28290;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: #3E6840;
  border: 1.5px solid #6BAB3F;
}
.cookie-banner .btn-settings:hover {
  background: #eef6ec;
  color: #163E63;
}

/* ---- COOKIE SETTINGS MODAL ---- */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(49,61,38,0.27);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 36px 25px 32px 20px / 28px 24px 42px 18px;
  box-shadow: 0 6px 96px #163E631A, 0 2px 12px var(--wood-shadow);
  padding: 38px 32px 28px 32px;
  min-width: 330px;
  max-width: 92vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #24402d;
}
.cookie-modal-content h3 {
  margin-bottom: 8px;
  color: #4e803b;
  font-size: 1.18rem;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  margin-bottom: 9px;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #e1f2dd;
  border-radius: 18px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-switch:checked {
  background: #6BAB3F;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px #73907144;
  transition: left 0.18s;
}
.cookie-switch:checked:before {
  left: 23px;
}
.cookie-modal-close {
  position: absolute;
  top: 23px;
  right: 22px;
  background: #eef6ec;
  border: none;
  border-radius: 13px;
  font-size: 1.6rem;
  color: #163E63;
  cursor: pointer;
  padding: 6px 14px;
  transition: background 0.13s, color 0.16s;
  z-index: 99;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #c1ae8f;
  color: #fff;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  flex-direction: row;
  justify-content: flex-end;
}

/* ---- GENERAL SPACING CONSISTENCY ---- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
ul, ol {
  margin-bottom: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* ---- CARDS AND SECTIONS ---- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
/* quick stats/facts */
.quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 0 0 28px 0;
  background: #eef6ec;
  border-radius: 18px;
  padding: 20px 10px;
  color: #21402b;
  font-weight: 600;
  font-size: 1.04rem;
}
.quick-stats li {
  min-width: 128px;
}

/* ---- PROCESS/ORDERED-LISTS STYLE ---- */
.process-section ol {
  list-style: decimal inside;
  background: #eef6ec;
  border-radius: 16px;
  padding: 19px 23px;
  color: #263b29;
  font-size: 1.05rem;
}
.process-section ol li {
  margin-bottom: 10px;
}

/* ---- MAP EMBED & INFO ---- */
.map-embed {
  background: #f6f9f4;
  border-radius: 18px;
  padding: 15px 19px;
  color: #3e6840;
  margin-top: 19px;
  font-size: 1.03rem;
}

/* ---- THANK YOU PAGE ---- */
.thank-you-section {
  background: linear-gradient(125deg, #eef6ec 62%, #FFBC27 160%);
  border-radius: 26px;
  padding: 54px 20px;
  text-align: center;
}
.thank-you-section h1 {
  color: #163E63;
  margin-bottom: 14px;
  font-size: 2.44rem;
}
.thank-you-section p {
  color: #295534;
}
.next-steps {
  margin: 30px 0 0 0;
  text-align: left;
  background: #fffef9;
  border-radius: 18px;
  box-shadow: 0 2px 7px var(--wood-shadow);
  padding: 21px 19px;
  color: #49724B;
}
.next-steps h2 {
  color: #6BAB3F;
  font-size: 1.18rem;
  margin-bottom: 1em;
}
.next-steps li {
  margin-bottom: 7px;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .feature-grid li, .card {
    min-width: 170px;
    padding: 16px 11px 11px 11px;
  }
}
@media (max-width: 800px) {
  .footer-contact {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 7px;
  }
  nav, header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .brand-footer img {
    height: 31px;
  }
  .footer-contact span {
    font-size: 0.94rem;
  }
  /* Responsive flex layouts */
  .feature-grid, .client-logo-row, .content-grid, .card-container, .quick-stats {
    gap: 14px !important;
  }
  .feature-grid, .client-logo-row {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card, .team .content-wrapper, .about-snippet .content-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }
  .card {
    min-width: 150px;
    padding: 15px 9px;
  }
  .hero-section h1 {
    font-size: 1.77rem;
  }
  .section, .hero-section, .legal-section, .thank-you-section, section {
    margin-bottom: 38px !important;
    padding: 26px 7px !important;
  }
  .testimonial-card {
    padding: 13px 7px;
    margin-bottom: 14px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 19px !important;
  }
}
@media (max-width: 520px) {
  html { font-size: 14px; }
  header .container {
    padding: 0 5px;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 9px 16px;
  }
  .feature-grid li {
    min-width: 100px;
    font-size: 0.93rem;
  }
  .testimonial-card p {
    font-size: 0.98rem;
  }
}
@media (max-width: 430px) {
  html { font-size: 13px; }
  .cookie-modal-content {
    padding: 17px 4px 19px 6px;
    min-width: 0;
  }
}

/* ---- PRINT ---- */
@media print {
  .cookie-banner, .mobile-menu, .mobile-menu-toggle, .btn-primary, .btn-secondary {
    display: none !important;
  }
}

/* ========== END OF CSS ========== */