/* ===================== CSS RESET & NORMALIZE ===================== */
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;
}

html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F5F7EB;
  color: #2D5A36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #2D5A36;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #73AD90;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 14px;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D5A36;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
.text-section p {
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* ============== GEOMETRIC STRUCTURED ELEMENTS ============== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(45, 90, 54, 0.07);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 34px;
    padding: 28px 8px;
    border-radius: 14px;
  }
}

.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

/* Card Containers & Cards */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(45,90,54,.08);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  min-width: 240px;
  transition: box-shadow 0.2s;
  border: 2px solid #E8ECE4;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(45, 90, 54, 0.15);
  border-color: #73AD90;
  z-index: 1;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7EB;
  border-left: 6px solid #73AD90;
  border-radius: 18px 0 0 18px;
  box-shadow: 0 2px 10px rgba(115,173,144,0.05);
  margin-bottom: 20px;
  color: #2D5A36;
  min-width: 200px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #316042;
  font-weight: 600;
  margin-left: auto;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 24px rgba(115,173,144,0.14);
  border-color: #2D5A36;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px;
  border-radius: 16px;
  background: #EEF1E3;
  margin-bottom: 16px;
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(45,90,54,0.04);
  position: relative;
  z-index: 30;
}
header .container {
  padding-top: 18px;
  padding-bottom: 18px;
}
header .content-wrapper {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  padding: 6px 0 6px 0;
  transition: color 0.19s, border-bottom 0.17s;
  border-bottom: 2.5px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: #73AD90;
  border-bottom: 2.5px solid #73AD90;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  background: #2D5A36;
  color: #fff !important;
  padding: 10px 28px;
  border-radius: 100px;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 18px;
  box-shadow: 0 2px 9px rgba(45, 90, 54, 0.08);
  letter-spacing: 0.05em;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #73AD90;
  color: #2D5A36 !important;
  box-shadow: 0 6px 20px rgba(115,173,144,0.13);
}

/* Hide mobile elements on desktop, hide desktop nav on mobile */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1024px) {
  header .content-wrapper nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 26px;
    top: 32px;
    font-size: 2.3rem;
    background: #fff;
    color: #2D5A36;
    border: 2px solid #2D5A36;
    border-radius: 12px;
    padding: 3px 16px 2px 16px;
    z-index: 50;
    cursor: pointer;
    box-shadow: 0 1px 6px rgba(45,90,54,0.09);
    transition: background 0.17s, box-shadow 0.16s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #F5F7EB;
    box-shadow: 0 4px 16px rgba(45,90,54,0.2);
  }
}

/* =========== MOBILE MENU / OVERLAY NAVIGATION =========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #2D5A36;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-105vw);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.89,.13,.24,1), opacity 0.27s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 21px;
  right: 26px;
  border: none;
  background: transparent;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #73AD90;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin-top: 78px;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 34px;
  letter-spacing: 0.08em;
  transition: color 0.15s;
  border-radius: 8px;
  padding: 8px 34px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #73AD90;
  background: rgba(245,247,235, 0.09);
}
@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* ===================== SECTIONS INSIDE MAIN ===================== */
main {
  margin-top: 20px;
  margin-bottom: 50px;
}
main section {
  width: 100%;
}

/* LISTS WITH ICONS or STRONGS - geometric spacing */
ul li img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 8px;
  background: #EEF1E3;
  display: inline-block;
  margin-bottom: -7px;
}
ul li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 10px;
}
ul li strong {
  color: #2D5A36;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===================== BUTTONS / CTA REUSE ===================== */
button, .cta-btn {
  outline: none;
  border: none;
}
button.cta-btn {
  min-width: 164px;
}

/* ===================== FOOTER ===================== */
footer {
  background: #2D5A36;
  color: #fff;
  padding-top: 36px;
  padding-bottom: 36px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 0px 24px rgba(45, 90, 54, 0.06);
}
footer .container {
  padding-top: 0;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #F5F7EB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 0;
  border: none;
  text-decoration: underline;
  margin-bottom: 8px;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #73AD90;
}
.footer-contact {
  font-size: 1rem;
  color: #F5F7EB;
  line-height: 1.9;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  background: none;
  border-radius: 0;
}
footer a {
  color: #F5F7EB;
}
footer a:hover, footer a:focus {
  color: #73AD90;
}
@media (max-width: 830px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

/* ===================== COOKIES CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(45,90,54,0.09);
  border-top: 4px solid #73AD90;
  padding: 18px 32px;
  gap: 24px;
  font-size: 1.06rem;
  animation: cookieSlideUp 0.7s cubic-bezier(.51,.04,.95,.25);
}
@keyframes cookieSlideUp {
  from {transform: translateY(120%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner__text {
  color: #2D5A36;
  margin-right: 12px;
  flex: 2;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
}
.cookie-btn {
  border-radius: 32px;
  border: none;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-right: 3px;
  transition: background 0.16s, color 0.14s;
}
.cookie-btn.primary {
  background: #2D5A36;
  color: #fff;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #73AD90;
  color: #2D5A36;
}
.cookie-btn.secondary {
  background: #EEF1E3;
  color: #2D5A36;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #2D5A36;
  color: #fff;
}

/* Hide cookie banner on mobile if needed */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 17px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner__text {
    margin-right: 0;
    width: 100%;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
  }
}

/* COOKIES SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45,90,54,0.58);
  z-index: 10030;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal__box {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(45,90,54,0.12);
  width: 94vw;
  max-width: 420px;
  padding: 30px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopIn 0.38s cubic-bezier(.7,.12,.63,1.21);
}
@keyframes modalPopIn {
  from {transform: scale(0.87);opacity:0;}
  to {transform: scale(1);opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.26rem;
  color: #2D5A36;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  margin-bottom: 9px;
  color: #2D5A36;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: #E8ECE4;
  border-radius: 99px;
  position: relative;
  transition: background 0.15s;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2D5A36;
  transition: left 0.17s, background 0.15s;
}
.cookie-switch.on {
  background: #73AD90;
}
.cookie-switch.on span {
  left: 19px;
  background: #fff;
}
.cookie-modal__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 21px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #2D5A36;
  cursor: pointer;
  padding: 2px 6px;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #73AD90;
}

/* ===================== FORM FIELDS ===================== */
input[type="text"], input[type="email"],textarea {
  border: 2px solid #E8ECE4;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.16s;
  background: #fff;
}
input[type="text"]:focus, input[type="email"]:focus,textarea:focus {
  border-color: #73AD90;
  background: #F5F7EB;
}

/* ===================== GEOMETRIC BUTTONS ===================== */
button, .cta-btn, .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(115,173,144,0.09);
  transition: background 0.19s, color 0.17s, box-shadow 0.18s;
}

/* ===================== ANIMATIONS ===================== */
.card, .testimonial-card, .feature-item, .section {
  transition: box-shadow 0.17s, border-color 0.17s, background 0.19s;
}

.section {
  border: 3px solid #E8ECE4;
  box-shadow: 0 3px 24px rgba(45,90,54,0.07);
  padding: 40px 20px;
}

/* ===================== RESPONSIVE ADJUSTMENTS ===================== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section {
    margin-bottom: 32px;
    padding: 18px 6px;
    border-radius: 12px;
  }
  main {
    margin-bottom: 26px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding-top: 20px;
    padding-bottom: 24px;
  }
}

/* ===================== VISUAL GEOMETRIC ACCENTS ===================== */
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  left: 30px;
  width: 52px;
  height: 52px;
  background: #EEF1E3;
  border-radius: 12px 0px 24px 4px;
  z-index: 0;
  opacity: 0.13;
}
.section:nth-child(even)::before {
  left: auto;
  top: -24px;
  right: 30px;
  border-radius: 0px 12px 24px 4px;
}
@media (max-width: 768px) {
  .section::before {
    top: -14px;
    left: 10px;
    width: 32px;
    height: 32px;
  }
  .section:nth-child(even)::before {
    right: 10px;
  }
}

/* ===================== ACCESSIBILITY STYLE ===================== */
:focus {
  outline: 3px solid #73AD90;
  outline-offset: 2px;
}

/* ===================== UTILITY CLASSES ===================== */
.mb-0 {margin-bottom: 0 !important;}
.mb-10 {margin-bottom: 10px !important;}
.mb-20 {margin-bottom: 20px !important;}
.mb-32 {margin-bottom: 32px !important;}
.mt-20 {margin-top: 20px !important;}
.flex-center {display:flex;justify-content:center;align-items:center;}

/* ===================== PRINT ===================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, .cta-btn, button {
    display: none !important;
  }
  header, footer, main, .section, .container {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
  }
}

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