/* =========================
   RESET & BASE TYPOGRAPHY
   ========================= */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F7F3;
  color: #22342A;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
ul, ol {
  margin: 0 0 16px 24px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2D6A4F;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p, .subtitle {
  font-size: 1.1rem;
  color: #22342A;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
.subtitle {
  font-size: 1.25rem;
  color: #40916C;
  font-family: 'Montserrat', Arial, sans-serif;
}
a {
  color: #2D6A4F;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  position: relative;
}
a:focus {
  outline: 2px solid #40916C;
  outline-offset: 2px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
/* ================================== */
/*          LAYOUT SPACING            */
/* ================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(64,145,108,0.07);
  padding: 36px 28px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.content-wrapper.hero {
  background: linear-gradient(120deg,#F5F7F3 60%,#E1F0E7 100%);
  box-shadow: 0 6px 32px rgba(45,106,79,0.07);
  align-items: flex-start;
  text-align: left;
}
.cta-section {
  align-items: center;
  text-align: center;
  background: linear-gradient(120deg, #F5F7F3 80%, #B9E4D0 100%);
  border: none;
}
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(64,145,108,0.09);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 210px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(45,106,79,0.19);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 230px;
  padding: 22px 18px 20px 18px;
  background: #F5F7F3;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(45,106,79,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-item:hover {
  background: #E6F3EB;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 24px rgba(45,106,79,0.10);
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
/* =======================
   HEADER AND MAIN NAV
======================= */
header {
  background: linear-gradient(90deg, #2D6A4F 93%, #40916C 100%);
  box-shadow: 0 2px 10px rgba(45,106,79,0.045);
  padding: 0;
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 22px;
  height: 74px;
  justify-content: flex-start;
}
.main-nav > a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 4px;
  transition: background 0.18s, color 0.16s;
  margin-right: 4px;
}
.main-nav > a:hover, .main-nav > a.active {
  background: rgba(255,255,255,0.13);
  color: #E1F0E7;
}
.main-nav > a.cta-main {
  background: linear-gradient(90deg, #51B692 20%, #2D6A4F 100%);
  color: #fff;
  margin-left: 14px;
  padding: 9px 24px;
  border-radius: 20px;
  box-shadow: 0 1px 9px rgba(64,145,108,0.08);
  font-size: 1.07rem;
  letter-spacing: 0.03em;
  transition: background 0.22s, box-shadow 0.19s;
}
.main-nav > a.cta-main:hover {
  background: linear-gradient(90deg, #40916C 60%, #51B692 100%);
  box-shadow: 0 4px 18px rgba(45,106,79,0.15);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 9px;
  margin-top: 1px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 160;
  cursor: pointer;
  border-radius: 6px;
  padding: 7px 13px;
  transition: background .18s, box-shadow .15s;
}
.mobile-menu-toggle:focus {
  background: #E6F3EB;
  color: #2D6A4F;
  outline: none;
}
/* ============================
     MOBILE MENU OVERLAY
============================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #fff 80%, #B9E4D0 100%);
  box-shadow: -10px 0 40px rgba(45,106,79,0.16);
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.68,-0.17,.27,1.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #2D6A4F;
  position: absolute;
  top: 17px;
  right: 25px;
  z-index: 260;
  cursor: pointer;
  background: #F5F7F3;
  border-radius: 10px;
  padding: 8px 15px;
  transition: background .23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B9E4D0;
  color: #106143;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  justify-content: flex-start;
  padding: 92px 38px 32px 42px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #2D6A4F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 8px;
  padding: 8px 0px 8px 4px;
  margin-bottom: 2px;
  min-width: 150px;
  transition: background 0.20s, color 0.16s;
  display: block;
}
.mobile-nav a:hover {
  background: #E1F0E7;
  color: #40916C;
}
/* Hide desktop nav/show mobile nav on small screens */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header {
    padding-bottom: 1px;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .mobile-nav {
    padding: 60px 17px 16px 18px;
    font-size: 1rem;
    gap: 20px;
  }
}
/* =======================
       FOOTER
======================== */
footer {
  background: #22342A;
  color: #fff;
  margin-top: 50px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 18px;
  padding-top: 18px;
}
.footer-nav a {
  color: #C3D7C9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #fff;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 13px;
}
.contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.contact-info span {
  margin-right: 13px;
}
.footer-copy {
  color: #80B29C;
  font-size: 0.92rem;
  margin-bottom: 12px;
}
/* ================================
        TESTIMONIALS / REVIEWS
================================ */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7F3;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(45,106,79,0.07);
  min-width: 220px;
  max-width: 390px;
  flex: 1 1 320px;
  color: #22342A;
  font-size: 1.05rem;
  margin-bottom: 0;
  transition: box-shadow 0.22s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 4px 13px rgba(45,106,79,0.12);
}
.testimonial-card p {
  color: #22342A;
  line-height: 1.5;
  margin-bottom: 0;
}
.testimonial-meta {
  color: #40916C;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 8px;
  margin-top: 9px;
}
/* ================================
        FAQ Accordion
================================ */
.faq-accordion {
  width: 100%;
  margin: 0;
  margin-bottom: 32px;
  font-family: 'Roboto', Arial, sans-serif;
}
.faq-accordion dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
  margin-top: 22px;
  color: #2D6A4F;
  font-size: 1.13rem;
  cursor: pointer;
  position: relative;
}
.faq-accordion dd {
  margin: 0 0 6px 0;
  padding: 0 0 0 16px;
  color: #22342A;
  font-size: 1rem;
}
/* ===============
    BUTTONS
================== */
.cta-main {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #51B692 20%, #2D6A4F 100%);
  color: #fff !important;
  padding: 13px 35px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 10px rgba(64,145,108,0.09);
  border: none;
  cursor: pointer;
  transition: background 0.24s, box-shadow 0.19s, transform 0.22s;
  margin-top: 13px;
  margin-bottom: 0;
  text-align: center;
  text-decoration: none;
}
.cta-main:hover, .cta-main:focus {
  background: linear-gradient(90deg, #40916C 55%, #51B692 100%);
  box-shadow: 0 7px 28px rgba(45,106,79,0.15);
  transform: translateY(-2px) scale(1.04);
}
button, .btn {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #40916C;
  color: #fff;
  border: none;
  border-radius: 19px;
  padding: 10px 32px;
  font-weight: 600;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.17s, color 0.16s;
}
button:hover, .btn:hover {
  background: #2D6A4F;
  color: #FFF;
}
/* Cookie consent distinct color buttons */
.cookie-btn-accept {
  background: #2D6A4F;
  color: #fff;
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #40916C;
  color: #fff;
}
.cookie-btn-reject {
  background: #f0f0e7;
  color: #2D6A4F;
  border: 1px solid #ddd;
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: #E6F3EB;
  color: #2D6A4F;
}
.cookie-btn-settings {
  background: #40916C;
  color: #fff;
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: #136144;
  color: #fff;
}
/* ===============================
      CONTACT & DETAIL BLOCKS
================================ */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.map-section {
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
  background: #F5F7F3;
  border-radius: 10px;
  padding: 18px 18px;
  min-width: 190px;
  margin-top: 6px;
}
.contact-details .text-section {
  flex: 2 1 320px;
}
.contact-cta {
  margin-top: 20px;
  background: #E1F0E7;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 1.07rem;
  color: #2D6A4F;
}
/* ==========================
       OL, UL,
========================== */
ul, ol {
  list-style-position: inside;
  line-height: 1.6;
}
ul li::marker {
  color: #40916C;
}
ol li::marker {
  color: #2D6A4F;
}
/* ==============================
   COOKIE CONSENT BANNER & MODAL
============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 18px rgba(45,106,79,0.09);
  padding: 22px 18px 20px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 16px 16px 0 0;
  transition: bottom 0.25s;
}
.cookie-banner__text {
  color: #22342A;
  font-size: 1.01rem;
  flex: 2 1 340px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex: 1 0 auto;
  justify-content: flex-end;
}
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right:0; bottom:0;
  z-index: 10001;
  background: rgba(45,106,79,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.34s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 32px 32px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 6px 38px rgba(64,145,108,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  font-weight: 700;
  color: #2D6A4F;
  margin-bottom: 12px;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal__list label {
  display: flex;
  align-items: center;
  font-size: 1.02rem;
  color: #22342A;
}
.cookie-modal__list input[type="checkbox"] {
  margin-right: 14px;
  accent-color: #2D6A4F;
  width: 18px;
  height: 18px;
}
.cookie-modal__actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #2D6A4F;
  border-radius: 6px;
  cursor: pointer;
  padding: 7px 10px;
  transition: background .16s;
}
.cookie-modal__close:hover {
  background: #F5F7F3;
}
.cookie-modal__category {
  font-size: 1.09rem;
  color: #2D6A4F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 2px;
}
.cookie-modal__description {
  color: #22342A;
  font-size: 1rem;
}
/* =====================
    RESPONSIVE DESIGN
====================== */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 1000px) {
  .container {
    max-width: 860px;
  }
  .footer-nav, .contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 7px;
  }
  .content-wrapper {
    padding: 25px 10px;
    margin-bottom: 13px;
  }
  .card, .feature-item, .testimonial-card {
    min-width: 100%;
    max-width: 100%;
  }
  .feature-grid, .testimonial-slider, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .section {
    margin-bottom: 37px;
    padding: 22px 3px;
  }
  .content-wrapper.hero {
    text-align: left;
    align-items: flex-start;
    padding: 21px 7px;
    border-radius: 14px;
  }
  .cta-section {
    border-radius: 12px;
    padding: 20px 6px;
  }
  .text-image-section, .contact-details {
    flex-direction: column;
    gap: 19px;
  }
  .footer-nav,
  .contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .content-wrapper, .feature-item, .testimonial-card, .section {
    padding: 14px 6px;
    border-radius: 9px;
  }
  .cookie-banner__text {
    font-size: 0.91rem;
  }
  .cta-main, button, .btn {
    font-size: .98rem;
    padding: 11px 18px;
  }
}
/* =============================
   VISUAL MICRO-INTERACTIONS
============================= */
a.underline-on-hover:after {
  content: '';
  display: block;
  height: 2px;
  background: #51B692;
  width: 0;
  transition: width 0.25s;
}
a.underline-on-hover:hover:after {
  width: 100%;
}

/* =========================
    UTILITY CLASSES
========================== */
.d-flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.gap-16 {
  gap: 16px;
}
.text-center {
  text-align: center;
}
/* ===========
   PRINT
============ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
}
