/* RESET & BASELINE ----------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #1b5a31;
  background: #e3e7d3;
  min-height: 100vh;
  line-height: 1.6;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 1.25em;
}
li {
  margin-bottom: 8px;
}
a {
  color: #20703d;
  text-decoration: none;
  transition: color 0.25s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #ffc043;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}
address {
  font-style: normal;
  color: #20703d;
  margin-bottom: 8px;
}

/* FONT FACE ----------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #20703d;
  letter-spacing: -0.03em;
  margin-bottom: 0.5em;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75em;
  color: #ffc043;
  text-shadow: 1px 2px 0 #fff687, 2px 4px 10px rgba(255, 192, 67, 0.08);
}
h2 {
  font-size: 2rem;
  color: #20703d;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.5rem;
  color: #1b5a31;
}
.section h2,
.section h3 {
  text-align: left;
}
p {
  font-size: 1.125rem;
  margin-bottom: 1em;
  color: #267e43;
}
strong {
  font-weight: 700;
  color: #1b5a31;
}

/* CONTAINER & FLEXBASE --------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

/* SECTIONS --------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(32, 112, 61, 0.09);
  position: relative;
}
@media (max-width:768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
    border-radius: 20px;
  }
}

/* HERO SECTION ------------------- */
.hero {
  background: linear-gradient(120deg,#ffc043 85%,#e3e7d3 100%);
  padding: 40px 0 32px 0;
  margin-bottom: 60px;
  border-bottom-left-radius: 64px 80px;
  border-bottom-right-radius: 64px 80px;
  box-shadow: 0 16px 28px -2px rgba(173,224,120,0.20);
  min-height: 260px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero h1,
.hero p {
  color: #1b5a31;
  text-shadow: none;
}
.hero .cta-btn {
  margin-top: 14px;
}
@media (max-width: 768px) {
  .hero {
    padding: 28px 0 20px 0;
    border-bottom-left-radius: 32px 40px;
    border-bottom-right-radius: 32px 40px;
  }
}

/* NAVIGATION ------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(32,112,61,0.07);
  width: 100%;
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
}
.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.24s cubic-bezier(.8,.5,.2,1.1);
}
.logo:hover img {
  transform: scale(1.07) rotate(-3deg);
  filter: drop-shadow(0 2px 6px #ffc043aa);
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #20703d;
  padding: 6px 12px 6px 12px;
  border-radius: 20px;
  transition: background 0.23s, color 0.23s;
}
.main-nav a:hover,
.main-nav a.active {
  background: #ffc043;
  color: #1b5a31;
}
.cta-btn {
  background: #ffc043;
  color: #1b5a31;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  padding: 14px 32px 14px 32px;
  border-radius: 28px;
  box-shadow: 0 2px 10px 0 #ffc04355;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.22s, color 0.19s, box-shadow 0.25s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.cta-btn.secondary {
  background: #20703d;
  color: #fff;
  box-shadow: 0 2px 10px 0 #20703d28;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffdb87;
  color: #20703d;
  box-shadow: 0 6px 18px 0 #ffc04351, 0 2px 10px 0 #ffc04377;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #129a56;
  color: #ffc043;
}

/* MOBILE MENU -------- */
.mobile-menu-toggle {
  display: none;
  background: #20703d;
  color: #ffc043;
  font-size: 2.2rem;
  line-height: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  margin-left: 16px;
  z-index: 120;
  transition: background .18s, color .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffc043;
  color: #20703d;
}
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #20703d;
  color: #ffc043;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.28s, transform 0.36s cubic-bezier(.36,1.43,.47,.98);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: #ffc043;
  color: #1b5a31;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 18px 22px 0 0;
  box-shadow: 0 2px 8px #ffc04355;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:hover {
  background: #ffdb87;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px 0 30px;
  gap: 10px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 4px 10px 0;
  color: #fffbe9;
  border-bottom: 1.5px dashed #ffc04311;
  transition: color 0.19s, padding-left 0.23s;
  width: 100%;
  border-radius: 0 12px 12px 0;
}
.mobile-nav a:hover {
  color: #ffc043;
  padding-left: 18px;
  background-color: #1b5a31;
}

/* CARDS & LAYOUT GRIDS ----------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #ffc0431b, 0 8px 22px #1b5a3117;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 12px 30px #ffc04333, 0 2px 22px #20703d1a;
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
}
.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: stretch;
  }
}
.feature-grid, .usp-blocks,
.benefits-list, .impact-highlights ul, .certifications-affiliations ul, .quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style-type: none;
}
.feature {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 270px;
  background: #e3e7d3;
  border-radius: 20px;
  box-shadow: 0 2px 10px #20703d0a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 19px 17px 19px;
  position: relative;
  transition: transform 0.17s, box-shadow 0.22s;
  margin-bottom: 20px;
}
.feature:hover {
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 0 8px 32px 0 #ffc04333;
  background: #fff9e0;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px #ffc04326);
}
.feature h3 {
  margin-bottom: 10px;
}
.service-list {
  list-style-type: disc;
  padding-left: 28px;
  margin-bottom: 18px;
}
.service-list li {
  font-size: 1.07rem;
  margin-bottom: 10px;
  color: #26844d;
}
.pricing-overview {
  background: #fffbe9;
  color: #20703d;
  border-radius: 12px;
  padding: 15px 22px;
  box-shadow: 0 2px 10px #ffc04324;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  margin-top: 20px;
}
.benefits-list li::before {
  content: '⚡';
  color: #ffc043;
  margin-right: 9px;
  font-size: 1.2em;
  vertical-align: middle;
}
.quick-facts li::before {
  content: '🌿';
  color: #1b5a31;
  margin-right: 7px;
  font-size: 1em;
}
.impact-highlights li::before {
  content: '⚡';
  color: #ffc043;
  margin-right: 8px;
}
.certifications-affiliations li::before {
  content: '✔️';
  margin-right: 7px;
}

/* TESTIMONIALS ------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 30px;
  background: #fffbe9;
  border-radius: 18px;
  box-shadow: 0 2px 8px #ffc04333, 0 6px 12px #20703d0f;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #1b5a31;
  border-left: 7px solid #ffc043;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.22s;
  min-width: 220px;
  max-width: 560px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px #ffc04344, 0 4px 16px #20703d15;
  border-left: 11px solid #20703d;
}
.testimonial-card p {
  font-size: 1.18rem;
  color: #20703d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  animation: testimonialIn .77s cubic-bezier(.6,.25,.29,1.1);
}
.testimonial-card span {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #90812E;
}
@keyframes testimonialIn {
  0% { opacity: 0; transform: translateX(40px) scale(.92); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* TEXT SECTION & ADDRESS ------------------- */
.text-section {
  max-width: 900px;
  font-size: 1.07rem;
  color: #267e43;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul,
.text-section ol {
  margin-bottom: 0.7em;
}

/* STEP BY STEP GUIDE */
.step-by-step-guide {
  background: #e3e7d3;
  padding: 22px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 9px #20703d19;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step-by-step-guide ol {
  counter-reset: stepcount;
  list-style: none;
  padding-left: 0;
}
.step-by-step-guide ol li {
  counter-increment: stepcount;
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  min-height: 32px;
}
.step-by-step-guide ol li::before {
  content: counter(stepcount);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #ffc043;
  color: #20703d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.21em;
  box-shadow: 0 2px 9px #ffc04321;
  animation: stepPopIn .6s cubic-bezier(.5,.6,.45,1.4);
}
@keyframes stepPopIn {
  0% { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.price-information {
  background: #ffc043;
  color: #20703d;
  border-radius: 42px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 24px;
  margin-top: 12px;
  font-size: 1.11rem;
  box-shadow: 0 1px 7px #20703d18;
  align-self: flex-start;
}
.consulting-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.consulting-benefits li::before {
  content: '💡';
  margin-right: 7px;
}

/* FOOTER ------------ */
footer {
  margin-top: 52px;
  background: #20703d;
  color: #fff;
  border-top-left-radius: 54px 80px;
  border-top-right-radius: 54px 80px;
  padding: 44px 0 14px 0;
  box-shadow: 0 -4px 24px #20703d14;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #ffc043;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  border-radius: 14px;
  padding: 7px 14px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover {
  background: #ffc043;
  color: #20703d;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #fffbe9;
}
.footer-brand img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 1px 6px #ffc04344);
}

/* COOKIE CONSENT BANNER & MODAL ------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe9;
  color: #1b5a31;
  box-shadow: 0 -2px 14px #ffc04324;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 8888;
  font-size: 1.05rem;
  opacity: 1;
  transition: transform .44s cubic-bezier(.55,1.3,.19,.99) 0.1s, opacity .19s;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  will-change: transform, opacity;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(140%);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}
.cookie-btn {
  background: #ffc043;
  color: #20703d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 24px;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  margin-right: 2px;
  box-shadow: 0 1px 4px #20703d17;
  transition: box-shadow 0.17s, background 0.16s, color 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffdb87;
  color: #20703d;
  box-shadow: 0 3px 14px #ffc04344;
}
.cookie-btn.secondary {
  background: #20703d;
  color: #ffc043;
}
.cookie-btn.secondary:hover {
  background: #129a56;
  color: #fffbe9;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 70%);
  width: 98vw;
  max-width: 400px;
  background: #fffbe9;
  z-index: 9999;
  padding: 36px 26px 22px 26px;
  border-radius: 38px;
  box-shadow: 0 12px 42px #ffc04366, 0 2px 10px #1b5a3114;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.36s cubic-bezier(.35,1.34,.37,1.05);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cookie-modal h3 {
  margin-bottom: 16px;
  color: #20703d;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 37px;
  height: 20px;
  background: #e3e7d3;
  border-radius: 20px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-switch:checked {
  background: #ffc043;
}
.cookie-modal .cookie-switch::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #20703d;
  transition: transform 0.22s;
}
.cookie-modal .cookie-switch:checked::before {
  transform: translateX(17px);
  background: #1b5a31;
}
.cookie-modal .cookie-category[data-essential] .cookie-switch,
.cookie-modal .cookie-category[data-essential] label {
  filter: grayscale(70%) opacity(.66);
  pointer-events: none;
}
.cookie-modal .cookie-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* FORMS & BUTTONS ------------------ */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1.8px solid #20703d44;
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border-color 0.16s;
  margin-bottom: 15px;
  background: #fff;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border-color: #ffc043;
}
label {
  display: block;
  font-size: 1.07rem;
  margin-bottom: 6px;
}

/* RESPONSIVE ----------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 992px) {
  .footer-brand span,
  .desktoponly {
    display: none;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.13rem;
  }
  .footer-nav {
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }
  .container {
    padding: 0 5px;
  }
  .card, .testimonial-card, .feature {
    padding: 18px 10px;
  }
  .feature-grid, .usp-blocks {
    flex-direction: column;
    gap: 14px;
  }
  .benefits-list, .impact-highlights ul, .quick-facts {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 2vw;
  }
  .footer-brand img {
    height: 28px;
  }
}

/* ANIMATIONS / MICRO-INTERACTIONS ---------- */
.cta-btn {
  position: relative;
  overflow: hidden;
}
.cta-btn::after {
  content: '';
  position: absolute;
  left: -60%;
  top: 0;
  width: 34%;
  height: 100%;
  background: rgba(255,255,255,.30);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .35s cubic-bezier(.49,.09,.67,.91);
  z-index: 1;
}
.cta-btn:hover::after {
  left: 120%;
}
.feature {
  position: relative;
  overflow: visible;
}
.feature img {
  animation: popimage .9s cubic-bezier(.53,1.12,.63,1.06);
}
@keyframes popimage {
  0% { transform: scale(.72) rotate(-9deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* PLAYFUL DYNAMIC DECORATIVE ELEMENTS */
.section::before {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  top: 16px;
  right: 16px;
  background: #ffc043;
  opacity: 0.18;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.section:nth-of-type(even)::before {
  background: #20703d;
  opacity: 0.09;
  left: 12px;
  right: auto;
}
.section .container {
  position: relative;
  z-index: 2;
}


/* Playful font accents */
h1 span, h2 span, .section-title-accent {
  color: #ffc043;
  text-shadow: 0 2px 0 #fffbe9;
  display: inline-block;
  transform: rotate(-2deg);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Z-INDEX MANAGEMENT --------- */
.mobile-menu,
.cookie-modal {
  z-index: 9999;
}
.mobile-menu-toggle {
  z-index: 11001;
}

/* UTILITY CLASSES ------------- */
.d-none { display: none !important; }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }


/* CRITICAL LAYOUT FLEXBOX - ENFORCE SPACING */
.section, .card, .feature, .testimonial-card, .text-section, .card-container > *, .feature-grid > *, .usp-blocks > * {
  margin-bottom: 20px;
}
.card-container,
.feature-grid,
.usp-blocks,
.content-grid {
  gap: 20px;
}

/* Hide elements by default for mobile nav, cookie */
.mobile-menu,
.cookie-modal {
  display: flex;
  flex-direction: column;
}


/* END */
