/* 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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #EDEDEA;
  color: #18422D;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* FONT FACE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

html {
  font-size: 16px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  background: #EDEDEA;
  color: #18422D;
  /* Fun, playful accent dots */
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #1C4636;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.section h2, .about h1 {
  color: #29915A;
}

p, ul li, ol li {
  color: #2E5956;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* SPACING PATTERNS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(26, 115, 78, 0.08);
  transition: box-shadow 0.2s;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(41, 145, 90, 0.09);
  position: relative;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(41, 145, 90, 0.16);
  transform: translateY(-4px) scale(1.025) rotate(-2deg);
}
.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;
  margin-bottom: 24px;
  background: #F8FCFA;
  border-radius: 20px;
  border: 2px solid #69B184;
  box-shadow: 0 6px 32px 0 rgba(105,177,132,0.11);
  position: relative;
  min-width: 0;
}
.feature-item,
.features .feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFDF9;
  border-radius: 16px;
  padding: 28px 20px;
  transition: box-shadow 0.18s;
  box-shadow: 0 2px 10px 0 rgba(122, 193, 165, .09);
  margin-bottom: 20px;
}
.features .feature-grid li:hover {
  box-shadow: 0 6px 32px 0 rgba(41,145,90,0.10);
  background: #F3FBF1;
  transform: scale(1.04) rotate(1deg);
}


/* MAIN NAVIGATION */
header {
  background: #FFFFFF;
  box-shadow: 0 4px 18px 0 rgba(28, 70, 54, 0.09);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1C4636;
  position: relative;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #69B184;
  color: #ffffff;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 900;
  color: #fff;
  background: #29915A;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(41,145,90,0.22);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.21s, transform 0.13s;
  text-shadow: 0 3px 18px rgba(40,150,140,0.07);
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: #69B184;
  color: #18422D;
  transform: scale(1.055) rotate(-2deg);
  box-shadow: 0 10px 40px 0 rgba(41,145,90,0.14);
}
/* Burger */
.mobile-menu-toggle {
  display: none;
  background: #69B184;
  color: #fff;
  font-size: 2.2rem;
  padding: 8px 18px;
  border-radius: 17px;
  transition: background 0.19s;
  z-index: 1002;
  border: none;
  box-shadow: 0 3px 14px 0 rgba(41,145,90,0.21);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #29915A;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EDFBF4;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.73,0,0.35,1);
  box-shadow: 0 3px 32px 0 rgba(41,145,90,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 0 34px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #1C4636;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 15px 0 rgba(41,145,90,0.09);
  margin-bottom: 34px;
  align-self: flex-end;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #29915A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1C4636;
  padding: 19px 0 19px 10px;
  border-radius: 13px;
  transition: background 0.13s, color 0.13s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #69B184;
  color: #fff;
}

/* HERO HEADING & LEAD */
.hero {
  background: #DBFAF8;
  border-radius: 0 0 82px 82px;
  min-height: 350px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.hero h1 {
  color: #18422D;
}
.hero .subheadline {
  font-size: 1.19rem;
  color: #257086;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* FEATURE GRID STYLES */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.features .feature-grid li {
  flex: 1 1 235px;
  min-width: 235px;
  max-width: 340px;
}
.features .feature-grid img {
  width: 50px; height: 50px;
  background: #D9F7BA;
  border-radius: 50%;
  padding: 9px;
  margin-bottom: 11px;
  box-shadow: 0 1px 10px 0 rgba(41,145,90,0.07);
}

/* SERVICES LIST */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.services .service-item {
  flex: 1 1 250px;
  min-width: 240px;
  background: #FCFFF7;
  border-radius: 17px;
  padding: 24px 20px 32px 20px;
  transition: box-shadow 0.16s, transform 0.13s;
  box-shadow: 0 2px 16px 0 rgba(41,145,90,0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: stretch;
  position: relative;
}
.services .service-item:hover {
  background: #E7FFE5;
  box-shadow: 0 8px 30px 0 rgba(41,145,90,0.13);
  transform: scale(1.025) rotate(-1.5deg);
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1C4636;
  font-weight: 900;
  margin: 10px 0 18px 0;
  font-size: 1.10rem;
  letter-spacing: 0.02em;
}
.service-cta {
  color: #fff;
  background: #29915A;
  padding: 11px 24px;
  border-radius: 19px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  align-self: flex-start;
  margin-top: auto;
  text-align: center;
  box-shadow: 0 1px 10px 0 rgba(41,145,90,0.08);
  transition: background 0.16s, box-shadow 0.11s, color 0.15s;
}
.service-cta:hover, .service-cta:focus {
  background: #69B184;
  color: #fff;
  box-shadow: 0 4px 28px 0 rgba(41,145,90,0.13);
}

/* ABOUT & TEAM */
.about .text-section, .team .text-section, .values .text-section {
  font-size: 1.1rem;
  line-height: 1.8;
  background: #F8FCFA;
  border-radius: 18px;
  padding: 28px 20px;
  margin-bottom: 16px;
  color: #24707D;
  box-shadow: 0 4px 24px 0 rgba(41,145,90,0.07);
}
.team ul {
  margin-top: 10px;
}
.team li {
  margin-bottom: 16px;
}
.values ul {
  margin-bottom: 12px;
}
.values .commitment {
  background: #E7FFE5;
  color: #18422D;
  border-radius: 13px;
  padding: 18px 14px;
  font-weight: 700;
}

/* CTA SECTIONS */
.cta {
  margin-bottom: 60px;
  padding: 36px 24px;
  background: #FFF6E5;
  border-radius: 32px;
  box-shadow: 0 3px 24px 0 rgba(255, 193, 53, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cta .cta-button {
  margin-bottom: 13px;
}
.benefits-list, .workshop-overview ul {
  margin-top: 6px;
  margin-left: 24px;
  color: #1C4636;
  font-size: 1rem;
}
.benefits-list li {
  list-style: disc;
  margin-bottom: 7px;
}

/* TESTIMONIALS */
.testimonials {
  background: #E7FFE5;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  color: #29915A;
  margin-bottom: 30px;
}
.testimonial-card {
  background: #fff;
  border: 2.5px dashed #69B184;
  color: #18422D;
  position: relative;
  font-size: 1.08rem;
  min-width: 0;
}
.testimonial-card p {
  color: #18422D;
  font-size: 1.13rem;
  font-family: 'Open Sans',Arial,sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #29915A;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

/* CONTACT & FAQ */
.contact .text-section, .faq .faq-list {
  background: #F8FCFA;
  border-radius: 15px;
  padding: 22px 18px;
  margin-bottom: 16px;
  color: #29915A;
  box-shadow: 0 3px 12px 0 rgba(41,145,90,0.08);
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #1C4636;
}
.faq-item p {
  font-size: 1rem;
  color: #257086;
}

/* THANK YOU PAGE */
.thank-you {
  background: #FCF9FF;
  padding: 60px 22px;
  border-radius: 22px;
  margin-bottom: 60px;
  text-align: center;
}
.thank-you h1 {
  color: #27856A;
  font-size: 2.25rem;
  margin-bottom: 24px;
}
.thank-you .text-section {
  color: #414141;
  font-size: 1.08rem;
}

/* LEGAL PAGES */
.legal .text-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  font-size: 1.07rem;
  color: #18503C;
  box-shadow: 0 2px 10px 0 rgba(41,145,90,0.06);
}

/* FOOTER */
footer {
  background: #1C4636;
  color: #fff;
  padding: 34px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 20px;
}
.footer-nav a {
  color: #EDEDEA;
  font-size: 1rem;
  padding: 7px 0px;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FDFD5D;
}
.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}
.social-links a {
  background: #F3FBF1;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(41,145,90,.08);
  transition: background 0.16s, transform 0.16s;
}
.social-links a:hover, .social-links a:focus {
  background: #69B184;
  transform: scale(1.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #DDD;
  font-size: 1rem;
  margin-top: 16px;
}
.footer-brand img {
  height: 38px;
  width: auto;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card,
.cta,
.testimonial-card,
.feature-item,
.services .service-item {
  transition: box-shadow 0.23s, transform 0.18s, background 0.12s;
}
.card:active,
.feature-item:active,
.cta:active {
  transform: scale(0.98);
}
.cta-button {
  animation: bounceInCTAPulse 1.2s cubic-bezier(0.7,0,0.3,1);
}
@keyframes bounceInCTAPulse {
  0% { transform: scale(0.93); }
  65% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* VISUAL FUN/ELEMENTS (confetti dots) */
body::before, body::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}
body::before {
  left: 8%; top: 9%;
  width: 44px; height: 44px;
  background: #F5D664;
  opacity: 0.25;
}
body::after {
  right: 6%; bottom: 12%;
  width: 32px; height: 32px;
  background: #61C2A8;
  opacity: 0.2;
}
.hero .container::after {
  content: '';
  position: absolute;
  top: 7%; right: 12%;
  width: 58px; height: 58px;
  background: #F5D664;
  border-radius: 50%;
  opacity: 0.13;
  z-index: 1;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #1C4636;
  color: #fff;
  padding: 22px 16px 22px 18px;
  box-shadow: 0 -4px 28px 0 rgba(41,145,90,0.14);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
  animation: fadeInCookie 0.91s cubic-bezier(.62,.08,.24,1.06);
}
@keyframes fadeInCookie {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 3px;
}
.cookie-banner button {
  padding: 9px 26px;
  border-radius: 17px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  margin-right: 8px;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 8px 0 rgba(41,145,90,0.07);
}
.cookie-banner .accept {
  background: #69B184;
  color: #fff;
}
.cookie-banner .accept:hover { background: #29915A; }
.cookie-banner .reject {
  background: #F5D664;
  color: #1C4636;
  border-radius: 14px;
}
.cookie-banner .reject:hover { background: #E8DA70; }
.cookie-banner .settings {
  background: #fff;
  color: #29915A;
  border: 2px solid #69B184;
}
.cookie-banner .settings:hover { background: #f5fbf8; color: #1C4636; }

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40,44,39,0.55);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 21px;
  min-width: 310px;
  max-width: 97vw;
  box-shadow: 0 8px 54px 0 rgba(41,145,90,0.18);
  padding: 38px 23px 23px 23px;
  font-size: 1.05rem;
  color: #18503C;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modalPop 0.5s cubic-bezier(0.7,0,0.3,1);
}
@keyframes modalPop {
  0% { transform: scale(0.78) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0px); opacity: 1; }
}
.cookie-modal h2 {
  color: #1C4636;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.cookie-modal-category {
  background: #F8FCFA;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1.06rem;
}
.cookie-modal-category .toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category label {
  font-family: inherit;
  cursor: pointer;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 12px; right: 16px;
  background: #69B184;
  border-radius: 11px;
  border: none;
  color: #fff;
  font-size: 1.42rem;
  padding: 5px 12px;
  transition: background 0.12s;
}
.cookie-modal .close-btn:hover { background: #29915A; }
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  padding: 9px 24px;
  border-radius: 13px;
  font-weight: 700;
  border: none;
  background: #69B184;
  color: #fff;
  font-size: 1rem;
  transition: background 0.14s;
}
.cookie-modal .modal-actions button.secondary {
  background: #fff;
  color: #29915A;
  border: 2px solid #69B184;
}
.cookie-modal .modal-actions button:hover {
  background: #29915A;
  color: #fff;
}
.cookie-modal .modal-actions button.secondary:hover {
  background: #F5D664;
  color: #174E37;
}
/* COOKIE TOGGLE STYLES */
input[type=checkbox].cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #DDD;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.11s;
}
input[type=checkbox].cookie-toggle:checked {
  background: #69B184;
}
input[type=checkbox].cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(33,103,61,0.14);
  transition: transform 0.15s;
}
input[type=checkbox].cookie-toggle:checked:before {
  transform: translateX(20px);
}

/* -- RESPONSIVE DESIGN/MOBILE FIRST -- */
@media (max-width: 1024px) {
  .features .feature-grid,
  .services .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .features .feature-grid li,
  .services .service-item {
    max-width: 100%;
    min-width: 0;
  }
  .footer-links {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 880px) {
  .hero {
    border-radius: 0 0 48px 48px;
    min-height: 220px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-links {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 7px;
  }
  .section {
    padding: 32px 6px;
    font-size: 1rem;
  }
  .features .feature-grid,
  .services .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item,
  .features .feature-grid li,
  .services .service-item {
    min-width: 0;
    width: 100%;
    padding: 21px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px 9px;
  }
  .cta {
    padding: 20px 7px;
    border-radius: 15px;
    font-size: 1rem;
  }
  .hero .content-wrapper {
    padding-top: 28px;
    padding-bottom: 32px;
  }
  .hero {
    min-height: 100px;
    border-radius: 0 0 28px 28px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13.5px;
  }
  .cookie-modal {
    min-width: 80vw;
    padding: 18px 5px 12px 9px;
  }
  .cookie-modal h2 {
    font-size: 1.11rem;
  }
  .hero {
    border-radius: 0 0 13px 13px;
    min-height: 45px;
  }
  .card, .feature-item, .testimonial-card {
    border-radius: 12px;
    padding-left: 7px;
    padding-right: 7px;
  }
  .cta {
    border-radius: 9px;
  }
}

/* Hide elements if mobile menu open (prevent overlap with body scrolling) */
body.menu-open {
  overflow: hidden;
}

/* ACCESSIBILITY */
a:focus, button:focus {
  outline: 2px dashed #69B184;
  outline-offset: 3px;
  z-index: 1;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::placeholder {
  color: #91B69D;
  opacity: 1;
}

/* END OF CSS */
