/*-------------------------------------------------------
  RESET & NORMALIZE (MOBILE-FIRST)
-------------------------------------------------------*/
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,
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.5;
  min-height: 100vh;
  scroll-behavior: smooth;
  background-color: #f5f7f3;
}
input, textarea, button, select {
  font: inherit;
  box-sizing: border-box;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
img, svg { max-width: 100%; height: auto; display: block; border: none; }

/*------------------------------------------------------
  CUSTOM PROPERTIES (with fallback) and BRAND COLORS
------------------------------------------------------*/
:root {
  --brand-primary: #1A3556;
  --brand-secondary: #E7E9ED;
  --brand-accent: #FFA000;
  --nature-green: #4A772F;
  --earth-brown: #A58364;
  --earth-tan: #e3dac6;
  --nature-leaf: #78A142;
  --nature-light: #F4F8F2;
  --text-main: #27312B;
  --text-muted: #6D7A6A;
  --background: #F4F8F2;
  --card-bg: #fff;
  --shadow: 0 2px 24px 0 rgba(89,107,80,0.09);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 7px;
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
  --border: 1px solid #d2d6c7;
}

/* FONT-FACE (Google Fonts: Montserrat, Roboto) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  color: var(--text-main);
  background: var(--background);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.2; }
h2 { font-size: 2rem; line-height: 1.25; }
h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }

p, li, dt, dd {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.7;
}
strong { font-weight: 600; }
a { color: var(--nature-green); text-decoration: underline; }
a:hover, .footer-links a:hover { color: var(--brand-accent); text-decoration: underline; }

/* Heading color override for testimonials */
.testimonial-card h2, .testimonial-card h3 {
  color: var(--nature-green);
}

/*---------------------------------------------
  LAYOUT CONTAINERS
----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1144px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
/* Section Spacing & Layout - mandatory spacing rules */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  padding: 28px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.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: center;
  gap: 20px;
  background: var(--nature-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px 0 rgba(134, 167, 110, 0.13);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 8px solid var(--nature-green);
  max-width: 520px;
  width: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card p {
  color: var(--brand-primary);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(134,167,110,0.15);
  transform: translateY(-3px) scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer-links, .footer-contact, .footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links {
  margin-bottom: 16px;
}
.footer-contact {
  margin-bottom: 12px;
  flex-wrap: wrap;
  font-size: 0.97em;
  color: var(--text-muted);
  gap: 16px;
}
.footer-social a {
  margin-right: 12px;
  opacity: 0.8;
  transition: opacity 0.18s;
}
.footer-social a:last-child { margin-right: 0; }
.footer-social a:hover { opacity: 1; }

/*---------------------------
  HEADER & NAVIGATION
----------------------------*/
header {
  width: 100%;
  background: var(--nature-light);
  border-bottom: 1px solid #dbe2d3;
  padding: 0;
  z-index: 110;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  gap: 18px;
}
header a img {
  height: 54px;
  width: auto;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: 0 2px 10px 0 rgba(77,116,42,0.03);
}
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
  transition: color 0.15s;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
}
nav a:hover, nav a:focus {
  color: var(--nature-leaf);
  background: #eaf5e0;
}

.cta-button {
  padding: 12px 28px;
  background: var(--nature-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 12px 0 rgba(134,167,110,0.11);
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  margin-left: 10px;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(255,160,0,0.14);
  transform: scale(1.040);
}

/*-----------------------------
  MOBILE NAVIGATION
------------------------------*/
.mobile-menu-toggle {
  display: block;
  position: fixed;
  top: 18px;
  right: 22px;
  background: var(--nature-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 2rem;
  z-index: 1202;
  box-shadow: 0 4px 16px 0 rgba(122, 170, 80, 0.16);
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.13s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--brand-primary);
}

@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(50,65,45,0.97);
  z-index: 1250;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.6,-0.11,.56,1.3);
  padding: 32px 0 0 10px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px; right: 18px;
  z-index: 1300;
  cursor: pointer;
  opacity: 0.96;
  box-shadow: 0 2px 9px 0 rgba(255, 160, 0, 0.13);
  transition: background 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--nature-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100vw;
  margin-top: 50px !important;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.20rem;
  font-weight: 500;
  color: #fff;
  padding: 16px 32px 16px 16px;
  border-radius: var(--radius-md);
  transition: background 0.15s, color 0.15s;
  width: 95%;
  margin-left: 0;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--nature-leaf);
  color: #fff;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}
@media (max-width: 1024px) {
  header nav {
    display: none; /* Hide desktop nav on mobile */
  }
  .cta-button {
    margin-left: 0;
  }
}

/*-----------------------------
  MAIN PAGE LAYOUTS
------------------------------*/
main {
  margin-top: 0;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
  border-radius: var(--radius-lg);
  width: 100%;
  box-sizing: border-box;
}
section:last-child {
  margin-bottom: 0;
}
.text-section {
  padding: 0;
  margin-bottom: 18px;
}

/* Feature/Icon List Styling (Organic Style) */
ul li, ol li {
  position: relative;
  margin-left: 0;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
  color: var(--text-main);
}
ul li img {
  height: 24px; width: 24px; margin-right: 6px; flex-shrink: 0;
  background: var(--nature-light);
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(71, 101, 43, 0.08);
  padding: 2px;
}

/*-------------------
  TABLES & FAQ
--------------------*/
table {
  width: 100%;
  background: #fff;
  border-radius: var(--radius-md);
  border: var(--border);
  box-shadow: 0 3px 20px 0 rgba(134,120,80,0.05);
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--brand-primary);
}
thead tr { background: var(--nature-light); }
thead th {
  padding: 13px 11px; font-weight: 700;
  color: var(--nature-green);
}
tbody tr {
  border-bottom: 1px solid #eae7da;
}
td, th {
  padding: 13px 11px;
}
tbody tr:nth-child(even) { background: #f7faef; }
tbody td { font-weight: 500; }

/* FAQ / dl-dt-dd style */
dl, dt, dd {
  margin: 0;
  padding: 0;
}
dl { margin-bottom: 18px; }
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 9px;
  color: var(--brand-primary);
}
dd {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-main);
}

/*------------------------------------------
  NEWS/BLOG CARD STYLE
-----------------------------------------*/
main ul > li {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px 0 rgba(60,97,38,0.08);
  padding: 22px 18px 14px 18px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 210px;
}
main ul > li:hover {
  box-shadow: 0 4px 26px 0 rgba(67,104,32,0.14);
  transform: translateY(-3px) scale(1.02);
}
main ul > li h2 {
  font-size: 1.35rem; color: var(--nature-green); margin-bottom: 0.5em;
}

/*-----------------------------
  FOOTER & SOCIAL
------------------------------*/
footer {
  width: 100%;
  background: var(--brand-primary);
  color: #fff;
  padding: 38px 0 18px 0;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  box-shadow: 0 -4px 24px 0 rgba(76, 101, 55, 0.11);
  font-size: 1rem;
}
footer .container {
  align-items: flex-start;
}
.footer-links a, .footer-social a, .footer-contact {
  color: #fff;
  font-size: 1rem;
  opacity: 0.93;
  margin-right: 16px;
  letter-spacing: 0.01em;
}
.footer-links a:last-child { margin-right: 0; }
.footer-links a:hover, .footer-social a:hover { color: var(--brand-accent); }
.footer-contact img { height: 18px; width: 18px; margin-right: 6px; vertical-align: middle; }
.copyright {
  color: #eae4cc;
  font-size: 0.96rem;
  margin-top: 20px;
  opacity: 0.65;
}

/*-----------------------------
  ORGANIC BUTTONS
------------------------------*/
button, .cta-button, input[type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.16s, transform 0.16s;
  user-select: none;
  box-shadow: 0 1px 6px 0 rgba(122, 170, 80, 0.10);
}

button:active, .cta-button:active, input[type='submit']:active {
  transform: scale(0.97);
}

/*-----------------------------
  RESPONSIVE DESIGN (MOBILE-FIRST!)
------------------------------*/
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding: 0 6px;
  }
  header .container {
    flex-direction: row;
    gap: 6px;
    padding-left: 4px; padding-right: 4px;
  }
  section {
    padding: 28px 0 28px 0;
  }
  .footer-links, .footer-contact, .footer-social {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.32rem; }
  nav, .footer-links, .footer-contact, .footer-social {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }
  .content-wrapper, .container { gap: 12px; }
  .section { padding: 22px 4px; margin-bottom: 34px; }
  .card-container, .content-grid { flex-direction: column; gap: 18px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card { min-width: 90vw; }
  main ul > li { min-width: unset; }
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  thead { display: none; }
  tr { margin-bottom: 25px; }
  td {
    padding: 13px 6px;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eaeae0;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.24rem; }
  .footer-links, .footer-contact, .footer-social {
    font-size: 0.98rem;
    gap: 11px;
  }
  .cta-button { padding: 12px 11px; font-size: 1rem; }
  .testimonial-card { padding: 14px; border-left-width: 5px; }
}

/*--------------------------------------
  COOKIE CONSENT BANNER & MODAL
---------------------------------------*/
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f7f9ed;
  box-shadow: 0 -1px 18px 0 rgba(71,81,43,0.06);
  border-top: 2px solid var(--nature-green);
  z-index: 2300;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 10px;
  font-size: 1rem;
  gap: 16px;
  transition: transform 0.35s cubic-bezier(.7,0,.38,1), opacity 0.25s;
}
#cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  color: var(--text-main);
  text-align: center;
  max-width: 920px;
}
.cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  justify-content: center;
}
.cookie-btn {
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: 10px 22px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s, transform 0.15s;
  outline: none;
  box-shadow: 0 2px 9px 0 rgba(26,53,86,0.08);
  margin-right: 4px;
}
.cookie-btn:last-child { margin-right: 0; }
.cookie-btn.accept {
  background: var(--nature-green);
  color: #fff;
}
.cookie-btn.reject {
  background: #DF3737;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: 0.95;
  background: var(--brand-primary);
  color: #fff;
}
.cookie-btn.accept:hover { background: var(--nature-leaf); }
.cookie-btn.reject:hover { background: #a11414; }
.cookie-btn.settings:hover { background: var(--earth-brown); }

#cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,37,21, 0.40);
  z-index: 2400;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.39s;
}
#cookie-modal.open {
  display: flex;
}
@keyframes cookieModalFadeIn { from { opacity:0; } to { opacity:1; } }
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px 22px 24px;
  min-width: 320px;
  max-width: 460px;
  box-shadow: 0 6px 44px 0 rgba(66,92,32,0.17);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--nature-green);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 15px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-main);
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--nature-green);
  height: 20px;
  width: 20px;
  margin: 0 7px 0 0;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 16px;
  border: none;
  background: var(--brand-accent);
  color: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.16s;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: var(--nature-green); }
@media (max-width: 560px) {
  .cookie-modal-content {
    min-width: unset;
    max-width: 96vw;
    padding: 19px 7px 15px 16px;
  }
}

/*-----------------------------
  ORGANIC/NATURE VISUAL ELEMENTS
------------------------------*/
.card, main ul > li, .testimonial-card, table {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  background: #fff;
}
section {
  background:
    repeating-linear-gradient(-68deg, transparent 0 10px, #EAEFD7 10px 20px, transparent 20px 35px),
    var(--background);
  box-shadow: 0 2px 16px 0 rgba(152, 178, 130, 0.04);
}

/* Subtle Texture for Nature Feel (background):
   Add organic visual interest */
body {
  background:
    linear-gradient(145deg, #F7F9ED 0%, #E7E9ED 60%, #e3dac6 100%),
    var(--background);
}

/* Buttons/CTAs
   Add subtle leafy shadows and roundedness for organic feel */
.cta-button, .cookie-btn {
  box-shadow: 0 2px 12px 0 rgba(122, 170, 80, 0.12);
}

main ul > li {
  border-left: 6px solid var(--nature-green);
  border-top-right-radius: 60px 26px;
  border-bottom-left-radius: 45px 18px;
}

.card {
  border-left: 7px solid var(--brand-accent);
  border-top-left-radius: 36px 12px;
  border-bottom-right-radius: 30px 35px;
}

.testimonial-card {
  border-left: 8px solid var(--nature-green);
  border-top-right-radius: 36px 29px;
  border-bottom-left-radius: 20px 33px;
  background: linear-gradient(120deg, #EDF6EB 0%, #F8FAF2 100%);
}

footer {
  border-top-right-radius: 100px 90px;
  border-top-left-radius: 56px 35px;
}

/*--------------------------------------
  SPACING BETWEEN CARDS & SECTIONS
---------------------------------------*/
.card, .testimonial-card, main ul > li, section, .card-container > *, .content-grid > * {
  margin-bottom: 20px;
}
.card-container, .content-grid {
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
section + section {
  margin-top: 44px;
}

/* Avoid absolute pos for content, only allow for icons/decoration */

/*-------------
  ACCESSIBILITY
--------------*/
:focus-visible {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/*---------------------
 MISC UTILITY CLASSES
----------------------*/
.text-center { text-align: center; }
.hidden { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Avoid overlapping: adequate padding and margings everywhere */
.card, .testimonial-card, main ul > li {
  margin-right: 0;
  margin-left: 0;
  margin-top: 0;
}

/*-------------------------------------
  SCROLLBAR (MATCH NATURE STYLE)
--------------------------------------*/
body::-webkit-scrollbar {
  width: 13px;
  background: #F4F8F2;
}
body::-webkit-scrollbar-thumb {
  background: #BFD499;
  border-radius: 7px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--nature-green);
}

/*-----------------------------
  ORGANIC ANIMATIONS
------------------------------*/
.cta-button, .cookie-btn, .testimonial-card,
.card, main ul > li {
  transition: box-shadow 0.16s, transform 0.14s, background 0.16s;
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.975);
  box-shadow: 0 2px 6px 0 rgba(122, 170, 80, 0.08);
}

/*-------------------------------------
  PRINT OPTIMIZATION (optional)
-------------------------------------*/
@media print {
  header, nav, footer, .mobile-menu, .mobile-menu-toggle, #cookie-banner, #cookie-modal { display: none !important; }
  body { background: #fff; }
}
