/* 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;
}
body {
  line-height: 1;
  font-family: Arial, "Montserrat", sans-serif;
  background: #F4FAF2;
  color: #1A2C1B;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input,button,select,textarea {
  font-family: inherit;
  font-size: inherit;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
:focus {
  outline: 2px solid #8FCF73;
  outline-offset: 2px;
}

/* Typography */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #25683E;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 14px;
  color: #25683E;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #25683E;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25683E;
  margin-bottom: 8px;
}
p,li,span {
  font-family: Arial, 'Montserrat', sans-serif;
  color: #1A2C1B;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: #25683E;
}

body, html {
  width: 100vw;
  min-height: 100vh;
}

/* Layout containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.header, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .container.footer {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  padding: 32px 20px 16px 20px;
  border-top: 1px solid #E1EDE3;
  background: #25683E;
  color: #fff;
}
.footer-logo {
  flex: 1 1 140px;
  min-width: 100px;
}
.footer-nav {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact {
  flex: 2 1 260px;
  font-size: 0.98rem;
  color: #fff;
  line-height: 1.5;
}
.footer-contact a {
  color: #8FCF73;
  text-decoration: underline;
}

/* Nav */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 0;
  color: #25683E;
  transition: color 0.2s;
  border-radius: 4px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #8FCF73;
  background: #25683e0f;
}
.main-nav .cta.primary {
  background: linear-gradient(90deg, #8FCF73 0%, #25683E 100%);
  color: #fff;
  padding: 9px 24px;
  margin-left: 18px;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 24px 0 #25683e14;
  transition: background 0.3s, box-shadow 0.3s, color 0.2s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: linear-gradient(90deg, #25683E 0%, #8FCF73 100%);
  color: #fff;
  box-shadow: 0 6px 24px 0 #25683e36;
}

.logo img {
  width: 140px;
  height: auto;
}

/* Hero/Section backgrounds with modern gradient_modern style */
.hero, .hero-contact, .hero-projects, .hero-workshops, .hero-blog, .thank-you {
  width: 100%;
  background: linear-gradient(120deg, #8FCF73 0%, #25683E 100%);
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
  box-shadow: 0 4px 28px 0 #25683e18;
}
.hero h1, .hero-contact h1, .hero-projects h1, .hero-blog h1, .hero-workshops h1, .thank-you h1 {
  color: #fff;
  text-shadow: 0 1px 8px #25683e36;
}
.hero p, .hero-contact p, .hero-projects p, .hero-blog p, .hero-workshops p, .thank-you p {
  color: #f0fcf2;
  margin-bottom: 24px;
}

/* Section spacing patterns */
.section,
.features, .about, .services, .testimonials, .contact-summary,
.about-detail, .mission-vision, .history-timeline, .about-cta,
.services-overview, .service-features, .cta-service, .case-studies, .project-impact, .project-cta,
.workshop-list, .workshop-benefits, .cta-workshop, .newsletter-signup, .blog-posts, .legal, .contact-details, .cta-contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  gap: 4px;
}

/* Flexbox list layouts (mobile first!) */
.features .feature-grid,
.services .service-list,
.services-overview .service-grid,
.case-studies .case-study-grid,
.blog-posts .post-grid,
.workshop-list .workshop-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.feature-list, .benefit-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 30px 0;
}
.value-icons {
  display: flex;
  gap: 32px;
  margin-top: 26px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.value-icons img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px #25683e17);
}

/* Cards & card container */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 #25683e21;
  padding: 30px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 36px 0 #25683e40;
  transform: translateY(-6px) scale(1.02);
}

/* Feature/Service items (icon+text) */
.features .feature-grid li,
.service-list li,
.services-overview .service-grid li,
.case-study-grid li,
.post-grid li,
.workshop-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #25683e10;
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.features .feature-grid li:hover,
.service-list li:hover,
.services-overview .service-grid li:hover,
.case-study-grid li:hover,
.post-grid li:hover,
.workshop-grid li:hover {
  box-shadow: 0 6px 28px 0 #25683e30;
  transform: translateY(-3px) scale(1.015);
}
.features .feature-grid li img,
.service-features .feature-list img {
  width: 44px;
  height: 44px;
}
.services-overview .service-grid li .service-price,
.workshop-grid li .workshop-price {
  background: #F4FAF2;
  color: #25683E;
  border-radius: 20px;
  padding: 3px 16px;
  font-size: 0.97rem;
  font-weight: 600;
  margin-top: 8px;
}
.services .service-list li span {
  color: #25683E;
  font-size: 0.96rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 3px;
}

/* Testimonials */
.testimonials .testimonial-card, .workshop-benefits .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  color: #1a2c1b;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 #25683e12;
  padding: 20px 26px 18px 26px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  transition: box-shadow 0.2s, transform 0.13s;
  margin-top: 24px;
}
.testimonials .testimonial-card span,
.workshop-benefits .testimonial-card span {
  color: #25683E;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 2px;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 6px 22px 0 #25683e24;
  transform: translateY(-2px) scale(1.008);
}

/* Newsletter signup and simple CTA */
.newsletter-signup, .cta-workshop, .cta-contact, .project-cta, .about-cta, .cta-service, .contact-summary {
  background: linear-gradient(90deg, #8FCF73 6%, #25683E 94%);
  border-radius: 24px;
  box-shadow: 0 2px 20px 0 #25683e11;
  color: #fff;
  padding: 48px 20px;
  margin-bottom: 40px;
}
.newsletter-signup h2,
.contact-summary h2,
.cta-service h2,
.project-cta h2,
.about-cta h2,
.cta-contact h2 {
  color: #fff;
}

/* Buttons */
.cta, .btn, button, .main-nav .cta.primary {
  display: inline-block;
  cursor: pointer;
  border: none;
  border-radius: 32px;
  background: #25683E;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 30px;
  margin-top: 24px;
  box-shadow: 0 2px 18px 0 #25683e16;
  transition: background 0.3s, color 0.18s, transform 0.17s, box-shadow 0.3s;
  outline: none;
}
.cta.primary {
  background: linear-gradient(90deg, #8FCF73 0%, #25683E 100%);
  color: #fff;
  box-shadow: 0 4px 16px 0 #25683e17;
}
.cta.primary:hover, .cta.primary:focus {
  background: linear-gradient(90deg, #25683E 0%, #8FCF73 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 24px 0 #25683e2f;
}
.cta:not(.primary):hover, .btn:hover, button:hover {
  background: #8FCF73;
  color: #25683E;
  transform: translateY(-1px) scale(1.015);
  box-shadow: 0 3px 12px 0 #25683e1a;
}

/* Responsive Images */
img, svg {
  vertical-align: middle;
}

/* Legal and Info section styles */
.legal h1 {
  color: #25683E;
  margin-bottom: 18px;
}
.legal h2 {
  margin-top: 24px;
}
.legal ul {
  margin: 10px 0 18px 22px;
  list-style: disc;
}
.legal li {
  margin-bottom: 8px;
}

/* Contact Sections */
.contact-details .text-section {
  margin-bottom: 22px;
}
.contact-details .map img {
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  margin-top: 12px;
  box-shadow: 0 2px 14px 0 #25683e15;
}

/* Hamburger menu + mobile nav */
.mobile-menu-toggle {
  display: none;
  background: #25683E;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  box-shadow: 0 2px 8px 0 #25683e10;
  transition: background 0.22s, color 0.13s;
  z-index: 202;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #8FCF73;
  color: #25683E;
}
/* Overlay menu styling */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,104,62,0.98);
  z-index: 201;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.67,.02,.37,1.22);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin: 20px 18px 16px 0;
  cursor: pointer;
  z-index: 203;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #8FCF73;
}
.mobile-nav {
  flex: 1;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 20px 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.11);
  width: 100%;
  transition: color 0.19s, background 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #8FCF73;
  color: #25683E;
}
/* .mobile-menu overlay open/close animation handled in JS */

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #25683E;
  color: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 20px 18px 20px;
  gap: 18px;
  box-shadow: 0 -4px 18px 0 #25683e22;
  animation: slideUp 0.7s cubic-bezier(0.22,1,0.36,1.18);
}
@keyframes slideUp {
  from {transform: translateY(110%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-consent-banner p {
  color: #fff;
  font-size: 1.03rem;
  margin-bottom: 8px;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  margin-top: 2px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-consent-actions .cookie-btn {
  border: none;
  border-radius: 32px;
  background: #8FCF73;
  color: #25683E;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 22px;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 0;
  box-shadow: 0 1px 8px 0 #00000010;
  transition: background 0.22s, color 0.11s, box-shadow 0.18s;
}
.cookie-consent-actions .cookie-btn.settings {
  background: #fff;
  color: #25683E;
  border: 1.4px solid #25683E;
  margin-left: 10px;
  padding: 10px 19px;
}
.cookie-consent-actions .cookie-btn:hover {
  background: #25683E;
  color: #fff;
}
.cookie-consent-actions .cookie-btn.settings:hover {
  background: #8FCF73;
  color: #25683E;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 400;
  left: 0; top: 0;
  right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(14, 33, 19, 0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #25683E;
  border-radius: 18px;
  max-width: 370px;
  width: 92vw;
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 6px 36px 0 #25683e50;
  position: relative;
  animation: modalUp 0.38s cubic-bezier(.5,.2,.2,1.1);
}
@keyframes modalUp {
  from {transform: translateY(80px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-modal h3 {
  color: #25683E;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex; flex-direction: row; align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid #8fcf7328;
  font-size: 1rem;
}
.cookie-modal .toggle-switch {
  display: inline-flex;
  align-items: center;
}
.toggle-switch input[type="checkbox"] { display:none; }
.toggle-switch-label {
  display: block; cursor: pointer;
  width: 38px; height: 22px;
  position: relative;
  background: #F4FAF2;
  border-radius: 11px;
  transition: background 0.15s;
  border: 1.4px solid #8FCF73;
}
.toggle-switch-label::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: #8FCF73;
  border-radius: 50%;
  box-shadow: 0 0 3px #25683e33;
  transition: left 0.2s;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-switch-label {
  background: #25683E;
  border: 1.4px solid #25683E;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-switch-label::after {
  left: 16px;
  background: #25683E;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 7px; right: 11px;
  background: transparent;
  color: #25683E;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cookie-modal .close-modal:hover {
  color: #8FCF73;
}
.cookie-modal .cookie-save-btn {
  margin-top: 22px;
  background: linear-gradient(90deg, #8FCF73 0%, #25683E 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  padding: 11px 30px;
  transition: background 0.15s, color 0.11s;
}
.cookie-modal .cookie-save-btn:hover {
  background: #25683E;
  color: #fff;
}

/* Transitions, shadows, spacing */
.card, .testimonial-card, .feature-item, .content-wrapper, .value-icons img {
  box-shadow: 0 2px 16px 0 #25683e13;
}

/* Spacing rules */
.card, .testimonial-card, .feature-item, .card-container > *, .card-grid > *, .post-grid > * {
  margin-bottom: 20px !important;
}
.card-container, .card-grid, .post-grid, .feature-grid, .service-grid, .case-study-grid, .workshop-grid {
  gap: 24px !important;
  display: flex !important;
}
.testimonials .testimonial-card:not(:last-child) {
  margin-bottom: 24px;
}
.content-grid {
  display: flex !important;
  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;
}

@media (max-width: 1080px) {
  .container { max-width: 95vw;}
  .header, .footer { gap: 20px; }
}
@media (max-width: 950px) {
  .main-nav { gap: 17px; font-size: 0.97rem; }
  .section, .about, .history-timeline,.services,.testimonials,.newsletter-signup,.cta-contact,
  .contact-summary, .about-detail, .project-impact, .case-studies, .project-cta, .service-features, .workshop-list, .workshop-benefits, .cta-workshop, .features {
    padding: 32px 6vw 32px 6vw !important;
  }
}
@media (max-width: 800px) {
  .main-nav .cta.primary { padding: 9px 12px; }
  .container.footer { flex-direction: column; align-items: flex-start; gap: 24px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 9px; padding-right: 9px;}
  .header, .footer { flex-direction: row; flex-wrap: wrap; gap: 8px; padding: 10px 0; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .value-icons { gap: 18px; }
  .features .feature-grid,
  .services .service-list,
  .services-overview .service-grid,
  .case-study-grid,
  .post-grid,
  .workshop-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid { flex-direction: column; gap: 15px; }
  .testimonial-card { padding: 18px 13px 14px 13px; }
  .section, .about, .history-timeline,.services,.testimonials,.newsletter-signup,.cta-contact,
  .contact-summary, .about-detail, .project-impact, .case-studies, .project-cta,.service-features, .workshop-list, .workshop-benefits, .cta-workshop, .features {
    padding: 27px 3vw 27px 3vw !important;
    margin-bottom: 40px !important;
  }
  .hero, .hero-contact, .hero-projects, .hero-workshops, .hero-blog, .thank-you {
    padding: 36px 0 27px 0;
    border-radius: 0 0 18px 18px;
    margin-bottom: 32px;
  }
  .value-icons img { width: 38px; height: 38px; }
  .text-image-section, .features .feature-grid, .content-grid { flex-direction: column !important; gap: 18px !important; }
  .card, .testimonial-card { padding: 20px 10px; }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  .logo img { width: 104px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.28rem; }
  .newsletter-signup, .cta-workshop, .cta-contact, .project-cta, .about-cta, .cta-service, .contact-summary {
    padding: 22px 7px;
    border-radius: 14px;
    margin-bottom: 20px;
  }
  .hero, .hero-contact, .hero-projects, .hero-workshops, .hero-blog, .thank-you {
    border-radius: 0 0 10px 10px;
  }
  .cookie-modal { padding: 16px 6px 14px 10px; }
}

/* Utilities */
.text-center { text-align: center !important; }
.mt-28 { margin-top: 28px; }
.mb-28 { margin-bottom: 28px; }
.mb-20 { margin-bottom: 20px !important; }
.gap-16 { gap: 16px !important; }
.rounded-12 { border-radius: 12px !important; }

::-webkit-scrollbar {
  width: 10px;
  background: #E8F6E2;
}
::-webkit-scrollbar-thumb {
  background: #8FCF73;
  border-radius: 5px;
}
.footer-contact span{
  color: white;
}