/* RESET & BASE STRUCTURE */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F9EF;
  color: #234F1E;
  line-height: 1.6;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: #234F1E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7AB86F;
}
button, .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #234F1E;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.1rem;
  line-height: 116%;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #366C3A;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 2px solid #E1F0DC;
  padding-top: 4px;
  padding-bottom: 4px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}
header img {
  height: 52px;
  width: auto;
}
.main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.20s, color 0.17s;
  position: relative;
}
.main-menu a.cta {
  background: #234F1E;
  color: #fff;
  border-radius: 30px;
  padding: 8px 24px;
  margin-left: 8px;
  box-shadow: 0 2px 8px 0 rgba(122,184,111, 0.13);
  transition: background 0.22s, box-shadow 0.22s;
}
.main-menu a.cta:hover, .main-menu a.cta:focus {
  background: #7AB86F;
  color: #234F1E;
  box-shadow: 0 4px 16px 0 rgba(35,79,30, 0.13);
}
.main-menu a:not(.cta):hover, .main-menu a:not(.cta):focus {
  background: #E1F0DC;
  color: #234F1E;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #234F1E;
  margin-left: 12px;
  display: none;
  z-index: 201;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(245,249,239,0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 0 0 0;
  transform: translateX(-110vw);
  transition: transform 0.33s cubic-bezier(.7,.1,.5,1);
  box-shadow: 1px 0 16px 0 rgba(35,79,30,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #234F1E;
  padding: 16px 22px 16px 12px;
  margin-bottom: 18px;
  align-self: flex-end;
  z-index: 202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  padding: 12px 0 12px 0;
  border-radius: 8px;
  color: #234F1E;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E1F0DC;
  color: #7AB86F;
}

/* HERO SECTION */
.hero {
  background: #E1F0DC;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 6px 24px 0 rgba(122,184,111,0.09);
  margin-bottom: 60px;
  padding: 40px 0 20px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.hero .cta-button {
  display: inline-block;
  margin-top: 10px;
}

/* CALL TO ACTION BUTTONS */
.cta-button, .content-wrapper .cta-button {
  background: #234F1E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 12px 32px;
  border-radius: 28px;
  font-size: 1.15rem;
  border: none;
  box-shadow: 0 3px 12px rgba(35,79,30,0.11);
  transition: background 0.24s, color 0.20s, transform 0.13s;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.cta-button:hover, .cta-button:focus {
  background: #7AB86F;
  color: #234F1E;
  transform: translateY(-2px) scale(1.035);
}

/* SECTIONS & FLEX PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features, .services, .testimonials, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper,
.services .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(35,79,30,0.10);
  position: relative;
  padding: 24px 20px 18px 20px;
}
.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;
}
/* ICON ROWS */
.icon-row {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin-top: 10px;
  margin-bottom: 16px;
}
.icon-row div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.icon-row img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}
.icon-row span {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  gap: 28px;
}
.testimonials h2 {
  margin-bottom: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #234F1E;
  padding: 20px 26px 20px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(35,79,30,0.12);
  margin-bottom: 20px;
  border-left: 8px solid #7AB86F;
  transition: box-shadow 0.18s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 20px 0 #7AB86F44;
  transform: scale(1.02);
}
.testimonial-card p {
  color: #234F1E;
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #234F1E;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  white-space: nowrap;
  margin-left: auto;
}

/* LEGAL / COOKIE / POLICY PAGES */
.legal .content-wrapper, .legal .text-section {
  gap: 18px;
}
.legal h1 {
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.25rem;
}
.legal h3 {
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #232c26;
  color: #fff;
  padding: 44px 0 36px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 40px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
footer .brand-description {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  max-width: 380px;
}
footer .brand-description img {
  width: 60px;
  height: 60px;
}
footer .brand-description p {
  font-size: 1.05rem;
  color: #E1F0DC;
  line-height: 1.45;
}
.footer-main-menu, .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-main-menu {
  margin-bottom: 12px;
}
.footer-main-menu a, .footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  letter-spacing: 0.01em;
  font-weight: 400;
  padding: 3px 0;
  transition: color 0.16s;
}
.footer-main-menu a:hover, .footer-menu a:hover {
  color: #7AB86F;
}
.footer-menu {
  margin-bottom: 12px;
}
footer .contact-info {
  font-size: 0.98rem;
  color: #E1F0DC;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
footer .contact-info img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.82;
}
footer .contact-info a {
  color: #7AB86F;
  word-break: break-all;
}
footer .contact-info a:hover {
  text-decoration: underline;
  color: #fff;
}

/* SPACING & FLEX LAYOUTS AS REQUIRED */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* COOKIES CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #234F1E;
  border-top: 3.5px solid #7AB86F;
  box-shadow: 0 -2px 16px rgba(35,79,30,0.13);
  padding: 20px 28px 18px 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 9999;
  gap: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.75,.3,.47,1.14), opacity 0.25s;
  will-change: transform, opacity;
  max-width: 100vw;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  background: #234F1E;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 24px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 8px 0 rgba(122,184,111, 0.13);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #7AB86F;
  color: #234F1E;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #234F1E;
  border: 2px solid #7AB86F;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  box-shadow: none;
  margin-left: 4px;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #7AB86F;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,79,30,0.38);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 94vw;
  padding: 36px 28px 20px 28px;
  box-shadow: 0 4px 36px 0 #234f1e26;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  animation: geometric-modal-in 0.39s cubic-bezier(.87,.2,.62,1.18);
}
@keyframes geometric-modal-in {
  from { transform: scale(0.87) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.26rem;
  color: #234F1E;
  margin-bottom: 8px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal-content .category-info {
  font-size: 1rem;
  color: #234F1E;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-content .cookie-toggle {
  display: flex;
  align-items: center;
}
.cookie-modal-content .cookie-toggle input[type="checkbox"] {
  appearance: none;
  border: 2px solid #7AB86F;
  border-radius: 10px;
  width: 38px; height: 18px;
  position: relative;
  background: #F5F9EF;
  transition: background 0.20s;
}
.cookie-modal-content .cookie-toggle input[type="checkbox"]:checked {
  background: #7AB86F;
}
.cookie-modal-content .cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  background: #fff;
  width: 12px; height: 12px;
  border-radius: 8px;
  transition: left 0.15s;
}
.cookie-modal-content .cookie-toggle input[type="checkbox"]:checked::after {
  left: 22px;
}
.cookie-modal-content .cookie-toggle input[type="checkbox"][disabled] {
  opacity: 0.48;
}
.cookie-modal-content .modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 5px;
}
.cookie-modal-content button {
  background: #234F1E;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 17px;
  padding: 6px 18px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.16s, color 0.18s;
}
.cookie-modal-content button.cookie-cancel {
  background: #fff;
  color: #234F1E;
  border: 2px solid #7AB86F;
}
.cookie-modal-content button.cookie-cancel:hover {
  background: #7AB86F;
  color: #fff;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #7AB86F;
  color: #fff;
}

/* VISUAL/GEOMETRIC DECORATIVE ELEMENTS */
.section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 24px 0 rgba(35,79,30,0.08);
}
.features, .services {
  background: #F5F9EF;
  box-shadow: none;
  border-radius: 20px;
}

/* GEOMETRIC TYPOGRAPHY */
body, .text-section, .cookie-banner, .cookie-modal-content {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #234F1E;
}
h1, .hero h1, .hero .cta-button, .main-menu a, .footer-main-menu a, .footer-menu a, .icon-row span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
  .footer .brand-description { max-width: 320px; }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 16px;
  }
  .footer .content-wrapper,
  footer .content-wrapper  {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .main-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 28px 0 12px 0;
    border-radius: 0 0 20px 20px;
  }
  .section, .features, .services, .testimonials, .legal {
    padding: 22px 4vw;
    border-radius: 16px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .icon-row {
    gap: 18px;
  }
  .footer .content-wrapper, footer .content-wrapper {
    gap: 18px;
  }
  .brand-description {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .content-grid, .card-container, .icon-row {
    flex-direction: column;
    gap: 14px;
    justify-content: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px 16px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 540px) {
  .header img { height: 38px; }
  h1 { font-size: 1.41rem; }
  h2 { font-size: 1.08rem; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 6vw 13px 6vw;
    font-size: 0.98rem;
    gap: 9px;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .section, .features, .services, .testimonials, .legal {
  transition: box-shadow 0.19s, transform 0.16s;
}
.card:hover, .section:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px 0 #7AB86F15;
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}

/* GEOMETRIC BUTTONS */
button, .cta-button {
  border-radius: 20px;
  letter-spacing: 0.02em;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.11s;
}
button:active, .cta-button:active {
  transform: scale(0.97);
}

/* Miscellaneous & Accessibility */
:focus {
  outline: 2px solid #7AB86F;
  outline-offset: 3px;
}
::-webkit-input-placeholder { color: #7AB86F88; }
::-moz-placeholder { color: #7AB86F88; }
:-ms-input-placeholder { color: #7AB86F88; }
::placeholder { color: #7AB86F88; }

/* Hide default scroll on modal background */
.cookie-modal.hide {
  pointer-events: none;
}

/* Hide cookies modal and banner if JS adds .hide */
.cookie-banner.hide, .cookie-modal.hide {
  display: none !important;
}

/* Geometric effects (decorative) */
.section:before, .section:after {
  display: none;
}

/* End of stylesheet */
