/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #FFFFFF;
  color: #224422;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #F4F4F2;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #224422;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.6,.1,.3,1);
}
a:focus, a:hover {
  color: #4C7A00;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #224422;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

p, ul, ol {
  margin-bottom: 20px;
  font-size: 1rem;
}
ul, ol {
  padding-left: 30px;
}
strong { font-weight: 700; }
em { font-style: italic; }
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #224422;
  background: #F4F4F2;
  border-left: 5px solid #336633;
  padding: 16px 22px;
  margin-bottom: 8px;
  border-radius: 10px;
}
cite {
  color: #7FB800;
  font-style: normal;
  font-size: 1rem;
  margin-left: 10px;
}

/* --- CONTAINER & SECTIONS --- */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* --- SPACING & LAYOUT --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,68,34,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s cubic-bezier(.6,.1,.3,1), transform 0.2s;
  border: 2px solid #F4F4F2;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(79, 163, 37, 0.18);
  transform: translateY(-5px) scale(1.03);
  border-color: #7FB800;
}
.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;
    align-items: flex-start;
    gap: 24px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border: 2px solid #7FB800;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 3px 18px rgba(79, 163, 37, 0.08);
  min-width: 0;
  /* NO absolute positioning for content */
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 12px;
}
.features-grid > div {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(34,68,34,0.07);
  padding: 28px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s cubic-bezier(.6,.1,.3,1), box-shadow 0.18s;
  margin-bottom: 20px;
}
.features-grid > div:hover {
  box-shadow: 0 4px 22px rgba(124,187,0,0.15);
  transform: translateY(-4px) scale(1.02);
}
.features-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}
@media (max-width: 992px) {
  .features-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
}

/* --- MAIN NAVIGATION --- */
header {
  background: #224422;
  box-shadow: 0 2px 10px rgba(34,68,34,0.06);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  height: 70px;
  justify-content: flex-start;
}
.main-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.16s, color 0.16s;
  display: flex;
  align-items: center;
}
.main-nav a.cta {
  background: #7FB800;
  color: #224422;
  margin-left: 12px;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(124,187,0,0.13);
  transition: box-shadow 0.16s, background 0.16s, color 0.16s;
}
.main-nav a.cta:hover,
.main-nav a.cta:focus {
  background: #4C7A00;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(124,187,0,0.18);
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F4F4F2;
  color: #224422;
}

.main-nav img {
  height: 42px;
  width: auto;
  margin-right: 24px;
}

@media (max-width: 1023px) {
  .main-nav a {
    font-size: 0.99rem;
    padding: 8px 10px;
    margin-right: 0;
  }
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #7FB800;
  font-size: 2.1rem;
  padding: 12px;
  cursor: pointer;
  outline: none;
  z-index: 130;
  position: absolute;
  right: 16px;
  top: 12px;
  transition: color 0.15s;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #224422;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.8,0,.21,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #7FB800;
  font-size: 2.3rem;
  padding: 22px 22px 14px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  margin-top: 36px;
  gap: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  padding: 18px 32px 18px 32px;
  transition: background 0.15s;
  border-radius: 0 38px 38px 0;
  margin-bottom: 3px;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7FB800;
  color: #224422;
}
@media (min-width: 993px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- BUTTONS & CTA --- */
.cta, button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.06rem;
  padding: 14px 34px;
  background: #7FB800;
  color: #224422;
  border: none;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(124,187,0,0.12);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 15px;
  transition: background .17s, box-shadow .18s, color .17s, transform .18s;
  position: relative;
  z-index: 1;
  text-decoration: none;
  outline: none;
}
.cta:hover, .cta:focus, button:hover, button:focus, .button:hover, .button:focus {
  background: #4C7A00;
  color: #FFFFFF;
  box-shadow: 0 8px 26px rgba(124,187,0,0.16);
  transform: translateY(-2px) scale(1.035);
}


/* --- FOOTER --- */
footer {
  background: #336633;
  color: #FFFFFF;
  padding: 40px 0 16px 0;
  margin-top: 60px;
  width: 100%;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  margin-top: 12px;
  align-items: center;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7FB800;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer img {
  height: 65px;
  width: auto;
  margin-bottom: 10px;
}
footer p, footer a {
  color: #F4F4F2;
  font-size: 1rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    gap: 12px;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-nav {
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 12px;
  }
  footer img {
    height: 50px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #224422;
  color: #FFFFFF;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 20px 22px 28px;
  box-shadow: 0 -2px 18px rgba(34,68,34,0.20);
  z-index: 10001;
  animation: cookie-slide-up 0.4s cubic-bezier(.72,.03,.62,.99);
  border-radius: 14px 14px 0 0;
}
@keyframes cookie-slide-up {
  0% { transform: translateY(80%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-message {
  flex: 1 1 340px;
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-left: 0;
  background: #7FB800;
  color: #224422;
  box-shadow: 0 2px 12px rgba(124,187,0,0.11);
  transition: background 0.15s, color 0.15s, box-shadow 0.16s, transform 0.11s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #4C7A00;
  color: #FFFFFF;
  box-shadow: 0 6px 22px rgba(124,187,0,0.17);
  transform: translateY(-2px);
}
.cookie-banner .cookie-settings-button {
  background: #FFFFFF;
  color: #224422;
  border: 2px solid #7FB800;
  margin-left: 7px;
}
.cookie-banner .cookie-settings-button:hover, .cookie-banner .cookie-settings-button:focus {
  background: #7FB800;
  color: #FFFFFF;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  z-index: 10050;
  left: 0; top: 0; width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 68, 34, 0.38);
  transition: opacity 0.3s;
}
.cookie-modal-inner {
  background: #FFFFFF;
  color: #224422;
  border-radius: 18px;
  padding: 32px 30px 26px 30px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 48px rgba(124,187,0,0.29);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-fade 0.27s cubic-bezier(.81,.06,.34,.94);
}
@keyframes cookie-modal-fade {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal .close {
  position: absolute;
  right: 22px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #224422;
  cursor: pointer;
  opacity: 0.8;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}
.cookie-option input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: #7FB800;
  border-radius: 50%;
}
.cookie-option input[type="checkbox"][disabled] {
  opacity: 0.6;
  accent-color: #cccccc;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  min-width: 112px;
}
@media (max-width: 600px) {
  .cookie-modal-inner {
    padding: 20px 10px 18px 10px;
    min-width: 80vw;
  }
}

/* --- FORMS (e.g. CONTACT) --- */
input, textarea {
  font-family: inherit;
  font-size: 1.08rem;
  border: 2px solid #4C7A00;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 17px;
  background: #F4F4F2;
  color: #224422;
  outline: none;
  transition: border 0.13s, background 0.13s;
}
input:focus, textarea:focus {
  border: 2px solid #7FB800;
  background: #ffffff;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #224422;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* --- ADDRESS --- */
address {
  font-style: inherit;
  background: #F4F4F2;
  color: #224422;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

/* --- LISTS --- */
ul, ol {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #224422;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1rem;
}
ul li::marker {
  color: #7FB800;
  font-size: 1.15em;
}
ol li::marker {
  color: #4C7A00;
  font-size: 1.15em;
}

/* --- MISC SPACING & FLEX PATTERNS --- */
.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;
}
@media (max-width: 600px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
}

/* --- ANIMATIONS & TRANSITIONS --- */
.cta, .button, button {
  transition: background .18s, color .18s, box-shadow .19s, transform .18s;
}
.card, .features-grid > div, .testimonial-card {
  transition: box-shadow .19s, transform .19s, border .18s;
}

/* --- VISUAL ELEMENTS: GEOMETRIC SHAPES AS DECORATION --- */
.decor-geo {
  pointer-events: none;
  position: absolute;
  border-radius: 24px;
  opacity: 0.14;
  z-index: 0;
}
.geo-rect-green {
  background: #7FB800;
}
.geo-circle-accent {
  background: #4C7A00;
  border-radius: 100%;
}

/* Example: can be added as decoration in HTML when needed */

/* --- MEDIA QUERIES --- */
@media (max-width: 1023px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .main-nav {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 4px 24px 4px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1rem; }
}

/* --- ACCESSIBILITY UTILITIES --- */
.sr-only {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  padding: 0!important;
  margin: -1px!important;
  overflow: hidden!important;
  clip: rect(0,0,0,0)!important;
  border: 0!important;
}

/* --- END OF STYLE --- */
