/* ---------------------------------
   RESET AND 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,
main, 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, nav, section {
  display: block;
}

body {
  line-height: 1.75;
  min-height: 100vh;
  background-color: #FBFAF5;
  color: #263B50;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  color: #17A398;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #268d6c;
}
ul, ol {
  padding-left: 2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* ---------------------------------
   TYPOGRAPHY
----------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #263B50;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.text-section h1, .text-section h2 {
  color: #18604f;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #384c3b;
}

/* ---------------------------------
   BRAND COLOR PALETTE
----------------------------------*/
:root {
  --color-primary: #263B50;
  --color-secondary: #17A398;
  --color-accent: #FBFAF5;
  --color-green: #57AD57;
  --color-earth: #BCA177;
  --color-brown: #7E6849;
  --color-dark-green: #18604f;
  --color-light-green: #d9e8e2;
  --color-error: #b14b4b;
  --color-bg: #FBFAF5;
  --color-bg-dark: #eef1ef;
  --color-success: #327759;
}

/* ---------------------------------
   GLOBAL CONTAINER
----------------------------------*/
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------
   FLEXBOX & LAYOUTS
---------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: transparent;
  border-radius: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 20px 0 rgba(34, 47, 40, 0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px 28px 24px;
  flex: 1 1 320px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #ebefe7;
}
.card:hover {
  transform: translateY(-4px) scale(1.018);
  box-shadow: 0 8px 32px 0 rgba(87, 173, 87, 0.11);
  border-color: #d9e8e2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section:last-child {
  margin-bottom: 0;
}

/*********************
 HERO SECTION
**********************/
.hero {
  background: url('../assets/organic-bg.svg'), linear-gradient(166deg, #eaf4f1 30%, #fff 96%);
  background-size: 480px, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: right bottom, center top;
  margin-bottom: 64px;
  border-radius: 0 0 36px 36px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 380px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 16px;
}
.hero h1 {
  color: var(--color-dark-green);
  font-size: 2.5rem;
}
.hero p {
  color: #384c3b;
}

/*********************
 CTA SECTIONS
**********************/
.cta-section {
  background: linear-gradient(123deg, #f7f4e7 30%, #eaf4f1 96%);
  border-radius: 36px;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cta-section .cta {
  margin-top: 14px;
}

/*********************
 CARDS, SERVICE LISTS, BLOG
**********************/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.service-list > div {
  background: #fff;
  border-radius: 16px 32px 20px 24px;
  box-shadow: 0 2px 10px 0 rgba(34, 47, 40, 0.04);
  padding: 24px 20px 18px 24px;
  flex: 1 1 285px;
  min-width: 255px;
  border-left: 5px solid #57AD57;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list > div:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(23, 163, 152, 0.12);
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.blog-list article {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 3px 12px 0 rgba(87, 173, 87, 0.12);
  flex: 1 1 300px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  border-top: 4px solid #BCA177;
}
.blog-list article:hover {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 8px 30px 0 rgba(23, 163, 152, 0.09);
}

/*********************
 TESTIMONIALS
**********************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 26px 28px;
  margin-bottom: 20px;
  background: #F4FBF3;
  border-radius: 18px 28px 18px 32px;
  box-shadow: 0 2px 16px 0 rgba(23,163,152,0.07);
  border-left: 4px solid #18604f;
  color: #263B50;
  font-size: 1.08em;
  position: relative;
}
.testimonial-card blockquote, .testimonial-card p {
  margin-bottom: 0;
  color: #263B50;
  font-style: italic;
  font-size: 1.05em;
}
.testimonial-card strong {
  color: #18604f;
}
.testimonial-card span {
  color: #7E6849;
  font-size: 0.97em;
  font-weight: 500;
}

/****************************
 BEFORE/AFTER CASE BLOCK
*****************************/
.before-after {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-top: 24px;
}
.before-after h3 {
  margin-bottom: 8px;
  color: #18604f;
  font-size: 1.1em;
}
@media (max-width:900px) {
  .before-after { flex-direction: column; gap: 16px; }
}

/****************************
 NUMBERS & IMPACT
*****************************/
.impact-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 16px;
  font-size: 1.16em;
}
.impact-numbers p {
  background: #eaf4f1;
  color: #18604f;
  border-radius: 12px 20px 8px 18px;
  padding: 14px 24px;
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(55,87,56,0.06);
}

/****************************
 TABLE STYLING
*****************************/
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 1em;
  background: #FBFAF5;
  border-radius: 14px;
  box-shadow: 0 1px 16px 0 rgba(87, 173, 87, 0.06);
  overflow: hidden;
}
table caption {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 1.1em;
}
thead tr {
  background: #d9e8e2;
}
td, th {
  padding: 12px 18px;
  border-bottom: 1px solid #ebefe7;
}
thead th {
  font-weight: bold;
  color: #18604f;
  letter-spacing: 0.01em;
}
tbody tr:last-child td {
  border-bottom: none;
}

/****************************
 MAP & OFFICE HOURS BLOCKS
*****************************/
.map-location {
  background: #eaf4f1;
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 500;
  color: #18604f;
}
.office-hours {
  margin-top: 14px;
  background: #f4fbf3;
  border-left: 4px solid #57AD57;
  border-radius: 9px;
  padding: 10px 15px;
  color: #263B50;
  font-size: 0.97em;
}

/****************************
 HEADER & NAVIGATION
*****************************/
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(34, 47, 40, 0.05);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  max-width: 160px;
  height: auto;
  margin-right: 32px;
}
header nav {
  display: flex;
  gap: 16px;
  flex: 1 1 auto;
  align-items: center;
}
header nav a {
  padding: 9px 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 6px;
  color: #263B50;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #eaf4f1;
  color: #18604f;
}
.cta.primary {
  background: linear-gradient(90deg, #17A398 15%, #57AD57 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1.09em;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 22px;
  padding: 13px 30px;
  margin-left: 16px;
  box-shadow: 0 2px 28px 0 rgba(23, 163, 152, 0.13), 0 1px 1px #eaf4f1;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.15s, color 0.12s;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #268d6c 12%, #57AD57 92%);
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(87, 173, 87, 0.20);
}
.cta {
  background: #18604f;
  color: #fff;
  border-radius: 20px;
  padding: 12px 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  display: inline-block;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 6px 0 #d9e8e2;
  transition: background 0.18s, color 0.14s;
}
.cta:hover, .cta:focus {
  background: #17A398;
  color: #fff;
}
button, .cta, .cta.primary {
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.14s, color 0.12s;
}

/****************************
 MOBILE MENU
*****************************/
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #17A398;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eaf4f1;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(23, 163, 152, 0.92);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.4,1.25,.25,1), opacity 0.22s;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 30px;
  background: none;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: background 0.13s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #18604f;
}
.mobile-menu .mobile-nav {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  align-items: center;
}
.mobile-menu .mobile-nav a {
  color: #fff;
  font-size: 1.18em;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 32px;
  border-radius: 16px;
  transition: background 0.23s;
  text-align: center;
  width: 75vw;
  max-width: 340px;
  display: block;
}
.mobile-menu .mobile-nav a:focus, .mobile-menu .mobile-nav a:hover {
  background: #57AD57;
  color: #fff;
}

@media (max-width:1020px){
  header nav {
    gap: 11px;
  }
}
@media (max-width:900px){
  .service-list > div, .blog-list article, .card {
    min-width: 180px;
    padding: 18px 12px;
  }
}
@media (max-width: 799px) {
  header .container { gap: 5px; }
}
@media (max-width: 900px) {
  .container { padding: 0 8px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero .container {
    min-height: 200px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .cta-section, .hero {
    border-radius: 0 0 26px 26px;
    padding: 18px 4px;
  }
  section {
    padding: 18px 4px;
    margin-bottom: 34px;
    border-radius: 12px;
  }
  .service-list, .blog-list {
    flex-direction: column;
    gap: 13px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .testimonial-card {
    padding: 14px 9px;
    border-radius: 11px 18px 13px 20px;
    font-size: 1em;
  }
  .impact-numbers {
    flex-direction: column;
    gap: 12px;
  }
  .card {
    padding: 15px 6px 12px 12px;
    border-radius: 13px;
    min-width: 120px;
  }
  .blog-list article {
    min-width: 120px;
    padding: 12px 8px;
    border-radius: 11px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* ----------------------------------
   FOOTER
-----------------------------------*/
footer {
  background: #263B50;
  color: #FBFAF5;
  padding: 40px 0 24px 0;
  font-size: 0.97em;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer img {
  max-width: 125px;
  margin-right: 24px;
  margin-bottom: 24px;
  filter: brightness(94%);
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 130px;
}
footer nav a {
  color: #FBFAF5;
  opacity: 0.89;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
  transition: color 0.12s, opacity 0.12s;
}
footer nav a:hover, footer nav a:focus {
  color: #17A398;
  opacity: 1;
}
footer .text-section {
  margin-top: 8px;
  margin-bottom: 18px;
  line-height: 1.5;
  color: #EEF1EF;
}
.social-media-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 7px;
}
.social-media-links a img {
  width: 26px;
  height: 26px;
  filter: contrast(130%) brightness(90%);
  transition: filter 0.16s;
}
.social-media-links a:hover img {
  filter: contrast(110%) brightness(110%) hue-rotate(25deg);
}
.newsletter-signup {
  background: #eaf4f1;
  color: #18604f;
  border-radius: 18px;
  padding: 18px 22px 18px 22px;
  box-shadow: 0 1px 8px 0 rgba(23,163,152,0.03);
  margin-top: 12px;
  min-width: 250px;
  max-width: 360px;
  font-size: 1.03em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.newsletter-signup .cta {
  min-width: 160px;
  margin-top: 8px;
  font-size: 1em;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding: 0 10px;
  }
  .newsletter-signup {
    max-width: 100%;
    min-width: unset;
  }
}

/* ---------------------------------
   MISCELLANEOUS & PROS/CONS TIPS
----------------------------------*/
.tips {
  background: #eaf4f1;
  border-radius: 12px;
  padding: 18px 20px;
  color: #18604f;
  margin: 18px 0;
}

/********************
 COOKIE CONSENT BANNER
*********************/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbe7;
  border-top: 3px solid #BCA177;
  box-shadow: 0 -2px 18px 0 rgba(55,54,51,0.11);
  color: #263B50;
  z-index: 1200;
  padding: 22px 16px 16px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-size: 1.05em;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.35s cubic-bezier(.5,1.5,.7,1), opacity 0.32s;
  opacity: 1;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
}
.cookie-banner .cookie-banner-content {
  flex: 1 1 auto;
  max-width: 660px;
  color: #776643;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btns button {
  background: #17A398;
  color: #FBFAF5;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  padding: 10px 26px;
  font-size: 1em;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.15s, box-shadow 0.18s, color 0.12s;
}
.cookie-btns .reject-btn {
  background: #b14b4b;
  color: #fff;
}
.cookie-btns .settings-btn {
  background: #BCA177;
  color: #263B50;
}
.cookie-btns button:focus, .cookie-btns button:hover {
  background: #57AD57;
  color: #fff;
  box-shadow: 0 1px 9px 0 #bca17770;
}
.cookie-btns .reject-btn:focus, .cookie-btns .reject-btn:hover {
  background: #936c37;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.98em;
    padding: 14px 6px 10px 7px;
  }
  .cookie-btns button {
    padding: 8px 13px;
    font-size: 0.97em;
  }
}

/********************
 COOKIE MODAL
*********************/
.cookie-modal-backdrop {
  display: none;
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,59,80,0.55);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.08s;
}
.cookie-modal-backdrop.active { display: flex; }
.cookie-modal {
  background: #FBFAF5;
  border-radius: 16px 22px 18px 28px;
  box-shadow: 0 4px 40px 0 rgba(38,59,80,0.21);
  padding: 38px 30px 32px 30px;
  max-width: 420px;
  width: 96vw;
  font-family: 'Roboto', Arial, sans-serif;
  color: #263B50;
  animation: slideDown 0.31s ease;
}
.cookie-modal h2 {
  margin-bottom: 18px;
  color: #18604f;
  font-size: 1.33em;
}
.cookie-toggle-list {
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaf4f1;
  padding-bottom: 8px;
  margin-bottom: 2px;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category .cookie-toggle {
  display: inline-block;
  position: relative;
  width: 35px;
  height: 21px;
  margin-left: 7px;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #BCA177;
  transition: background 0.2s;
  border-radius: 20px;
  width: 35px; height: 21px;
}
.cookie-toggle input:checked + .slider {
  background: #57AD57;
}
.cookie-toggle .slider:before {
  position: absolute;
  content: "";
  left: 2px; top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s;
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 19px;
}
.cookie-modal .cookie-modal-actions button {
  background: #17A398;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 9px 23px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #57AD57;
}

@media (max-width: 500px) {
  .cookie-modal {
    padding: 19px 7px 20px 11px;
    max-width: 94vw;
  }
}
@keyframes slideDown {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes fadeIn {
  0% {opacity: 0;} 100% {opacity: 1;}
}

/* --------------------------------------------
   ORGANIC/NATURE VISUALS & SHAPES
-----------------------------------------------*/
.section, .testimonial-card, .card, .service-list > div, .cta-section, .newsletter-signup, .tips, .cookie-modal {
  /* Subtle organic blob border radius */
  border-radius: 18px 32px 20px 24px;
}
.hero, .cta-section {
  /* More distinct rounded shape */
  border-radius: 0 0 36px 36px;
}
.service-list > div, .testimonial-card, .newsletter-signup {
  border-left: 6px solid #57AD57;
}

/*********************************
   UTILITY CLASSES
**********************************/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/*********************************
   FOCUS & ACCESSIBILITY
**********************************/
a:focus, button:focus, .cta:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px dashed #17A398;
  outline-offset: 2px;
}

/*********************************
   SCROLLBAR
**********************************/
body::-webkit-scrollbar {
  width: 11px;
  background: #eaf4f1;
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #BCA177;
  border-radius: 10px;
}

/*********************************
   PRINT
**********************************/
@media print {
  header, footer, .cookie-banner, .mobile-menu {display:none !important;}
  section, .container { box-shadow: none !important; background: #fff !important; }
}
