/* ===============================
   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,
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;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F3F1E7; /* subtle organic-beige */
  color: #243420; /* deep forest green */
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
a {
  color: #325338;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #476645;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #243420;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1.16;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.18;
}
h4, h5, h6 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: #324730;
}
strong {
  color: #212161;
}
ul, ol {
  margin-left: 22px;
}

/* ===============================
   CONTAINER
   =============================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
header {
  background: #e8ecd9; /* softly earthy */
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
  box-shadow: 0 2px 12px 0 rgba(44,76,38,.06);
  padding: 0;
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  color: #325338;
  padding: 7px 12px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background .18s, color .18s;
}
header nav a:hover,
header nav a:focus {
  background: #ddeed7;
  color: #153320;
}
.cta-btn {
  background: #38763D;
  color: #FFFAF3;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 12px 32px;
  margin-left: 14px;
  box-shadow: 0 2px 8px 0 rgba(56,118,61,0.09);
  cursor: pointer;
  letter-spacing: 0.7px;
  transition: background .2s, transform .18s, box-shadow .18s;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #264D28;
  color: #FFDF49;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 36px -8px rgba(56,118,61,0.19);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #325338;
  cursor: pointer;
  z-index: 120;
  margin-left: 18px;
  line-height: 1;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #e8ecd9;
  z-index: 110;
  box-shadow: 0 0 100px rgba(52,76,38,.10);
  flex-direction: column;
  transition: transform .34s cubic-bezier(.55,.11,.65,1.2);
  transform: translateX(100vw);
  padding: 24px 32px 18px 32px;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #212161;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #325338;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.32rem;
  padding: 13px 0;
  border-radius: 13px;
  font-weight: 500;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #cde4c2;
  color: #38763D;
}
@media (max-width: 1000px) {
  header .container nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1000px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle
  { display: none !important; }
}

/* ===============================
   SECTIONS & FLEX LAYOUTS
   =============================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px; /* as required */
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px 24px 24px;
  box-shadow: 0 2px 22px -8px rgba(44,76,38,.09);
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .17s, transform .19s;
}
.card:hover, .card:focus {
  box-shadow: 0 7px 32px -6px rgba(43,79,18,.13);
  transform: translateY(-7px) scale(1.015);
}
.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;
}
.text-section {
  margin-bottom: 20px;
  background: none;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #f9faf6;
  border-radius: 26px;
  box-shadow: 0 2px 18px -6px rgba(43,79,18,0.09);
  border: 1.5px solid #e2ebcb;
  max-width: 600px;
}
.testimonial-card p {
  color: #223318;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 0;
  text-align: center;
}
.testimonial-card strong {
  color: #335920;
  font-weight: 700;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Features grid for 3 columns */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature-grid > div {
  background: #f8faf0;
  border-radius: 18px;
  box-shadow: 0 2px 9px -4px rgba(44,76,38,.07);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .16s, transform .13s;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 30px -5px rgba(56,118,61,.12);
  transform: translateY(-5px) scale(1.027);
}
.feature-grid img {
  height: 48px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #e2ebcb;
  padding: 5px;
  box-shadow: 0 1px 8px -3px #8bb08c14;
}

/* Process Section (steps) */
.process ul, .faq ul, .benefits ul, .services ul {
  list-style: disc inside none;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.process ul li img,
.faq ul li img {
  vertical-align: middle;
  margin-right: 8px;
  height: 20px;
}

/* Highlighted event list */
.highlight > .container > .content-wrapper > div {
  background: #e2ebcb;
  color: #234712;
  border-radius: 14px;
  padding: 16px 24px;
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 1.16rem;
}

/* ===============================
   CTA SECTION
   =============================== */
.cta {
  background: #e2ebcb;
  border-radius: 25px;
  box-shadow: 0 2px 11px -5px #a7cbad42;
  margin-bottom: 0 !important;
  text-align: center;
}
.cta h2 {
  color: #215023;
}
.cta .cta-btn {
  margin: 0 auto 22px auto;
  display: inline-block;
}
.cta .text-section {
  justify-content: center;
  align-items: center;
  background: none;
  text-align: center;
  color: #213c26;
  font-size: 1.09rem;
}
.cta .text-section img {
  margin-right: 5px;
  vertical-align: middle;
  height: 20px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #253B23;
  color: #edf4e6;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: 50px;
  padding: 36px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
footer nav a {
  color: #f9fbee;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 4px 10px;
  transition: background .16s, color .16s;
}
footer nav a:hover, footer nav a:focus {
  background: #aadcce52;
  color: #FFDF49;
}
footer p {
  color: #dbecab;
  font-size: .97rem;
  text-align: center;
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #e2ebcb;
  color: #324F38;
  box-shadow: 0 -2px 21px -8px #253B23bb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 16px 16px 16px;
  gap: 12px;
  z-index: 9999;
  font-size: 1.12rem;
  transition: transform .38s cubic-bezier(.5,.11,.65,1.1), opacity .19s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 7px;
}
.cookie-btn {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.05rem;
  border: none;
  border-radius: 18px;
  padding: 8px 26px;
  cursor: pointer;
  box-shadow: 0 1px 8px -3px #8bb08c14;
  font-weight: 600;
  margin: 0 2px;
  transition: background .16s, color .16s, transform .11s;
}
.cookie-btn.accept {
  background: #38763D;
  color: #fffbe0;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #215823;
  color: #FFDF49;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn.reject {
  background: #fffbe0;
  color: #321d19;
  border: 1.2px solid #c6ba94;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ede9bb;
  color: #796800;
  transform: translateY(-2px) scale(1.03);
}
.cookie-btn.settings {
  background: #FFDF49;
  color: #38763D;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fbe05a;
  color: #253B23;
  transform: translateY(-2px) scale(1.03);
}

/* Cookie banner modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #212161b8;
  z-index: 10100;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #f7faea;
  color: #243420;
  border-radius: 24px;
  padding: 32px 28px 26px 28px;
  max-width: 440px;
  width: 90vw;
  box-shadow: 0 6px 44px -18px #21452394;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cocookie-in .4s cubic-bezier(.56,.01,.39,1.1);
}
@keyframes cocookie-in {
  0% { transform: scale(.85) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.cookie-modal label {
  font-size: 1.07rem;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: #364532;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #38763D;
  width: 20px; height: 20px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-btn {
  padding: 9px 28px;
}

/* ===============================
   RESPONSIVE DESIGN (mobile-first)
   =============================== */
@media (max-width: 1000px) {
  .container {
    max-width: 94vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  header img {
    height: 38px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.38rem; }
  .hero .container, .hero .content-wrapper { padding: 0; }
  section { padding: 27px 7px; }
}
@media (max-width: 768px) {
  .feature-grid, .content-grid { flex-direction: column; gap: 18px; }
  .testimonial-card { max-width: 98vw; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .cta, .cta .text-section { text-align: left; }
  footer .container { gap: 6px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
  .container { padding-left: 4px; padding-right: 4px; }
  .feature-grid > div, .card {
    min-width: 0;
    width: 100%;
  }
}

/* ===============================
   ORGANIC/NATURE VISUALS
   =============================== */
section, .card, .feature-grid > div, .testimonial-card, .cta {
  border-radius: 24px 18px 26px 20px/ 18px 22px 12px 25px;
}
section {
  background: #f8faf7;
}
.hero {
  background: #edf4e6;
  background-image: url('assets/organic-texture-bg.svg'); /* use a subtle leaf/organic SVG texture */
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Organic shadow for floating effect */
.card, .feature-grid > div, .testimonial-card, .cta {
  box-shadow: 0 4px 22px -8px #647d6865;
}

/* Subtle transitions & micro-interactions */
button, a, .card, .feature-grid > div, .testimonial-card {
  transition-property: background, color, box-shadow, transform;
  transition-duration: .18s, .18s, .22s, .13s;
  transition-timing-function: ease;
}

/* ===============================
   GENERAL UTILITY CLASSES
   =============================== */
.flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.gap-20 { gap: 20px !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-30 { margin-top: 30px !important; }
.mb-30 { margin-bottom: 30px !important; }

/* ===============================
   FORM/INPUTS (for contact forms or modal)
   =============================== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fbfcf7;
  color: #244a28;
  border: 1.5px solid #d7e3c5;
  border-radius: 13px;
  padding: 10px 14px;
  margin-bottom: 14px;
  width: 100%;
  outline: none;
  box-shadow: 0 1px 6px -4px #667d5863;
  transition: box-shadow .19s, border-color .13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #38763D;
  box-shadow: 0 2px 12px -7px #347311a1;
}

/* ===============================
   SCROLLBARS (for organic look)
   =============================== */
::-webkit-scrollbar {
  width: 13px;
  background: #f6f6ef;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #dae3bd;
  border-radius: 10px;
  border: 3px solid #f6f6ef;
}

/* ===============================
   ACCESSIBILITY/UTILITIES
   =============================== */
:focus-visible {
  outline: 2.5px solid #84b04f;
  outline-offset: 2.5px;
}

/* ===============================
   CUSTOM ANIMATION FOR MOBILE MENU
   =============================== */
.mobile-menu {
  will-change: transform, opacity;
  transition: transform .35s cubic-bezier(.57,.13,.55,1.18), opacity .19s;
}

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