/* ----- CSS RESET & NORMALIZATION ----- */
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #F5F2EA;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #F5F2EA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul,ol {
  padding-left: 24px;
}
a {
  color: #36543E;
  text-decoration: none;
  transition: color .18s cubic-bezier(.4,1,0.4,1);
}
a:hover, a:focus {
  color: #98B1A2;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #36543E;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.2rem; }

p, li, em, strong, span {
  font-size: 1rem;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* ----- LAYOUT & SPACING ----- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(54,84,62,0.08);
  transition: transform .2s cubic-bezier(.52,1.42,.4,1), box-shadow .15s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03) rotate(-1.4deg);
  box-shadow: 0 8px 28px rgba(54,84,62,0.12);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(54,84,62,0.08);
  border-left: 6px solid #98B1A2;
  position: relative;
  color: #28332a;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card p {
  margin-bottom: 8px;
  color: #222;
}
.testimonial-card strong {
  color: #36543E;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----- HEADER & NAVIGATION ----- */
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(54,84,62,0.06);
  position: sticky;
  top: 0;
  z-index: 6000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.logo img {
  height: 48px;
  transition: transform .16s cubic-bezier(.56,1.79,.36,1.07);
}
.logo:hover img {
  transform: scale(1.12) rotate(-7deg);
}
.main-nav {
  display: flex;
  gap: 20px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 20px;
  transition: background .16s, color .16s;
  font-size: 1rem;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F2EA;
  color: #36543E;
}
.main-nav .button-primary {
  background: #36543E;
  color: #fff !important;
  border-radius: 32px;
  padding: 10px 24px;
  margin-left: 12px;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(54,84,62,.09);
  transition: background .15s, transform .14s;
}
.main-nav .button-primary:hover,
.main-nav .button-primary:focus {
  background: #98B1A2;
  color: #222 !important;
  transform: translateY(-3px) scale(1.05) rotate(-1.5deg);
}
.mobile-menu-toggle {
  display: block;
  background: #F5F2EA;
  border: none;
  color: #36543E;
  font-size: 2rem;
  cursor: pointer;
  padding: 7px 14px;
  border-radius: 50%;
  margin-left: 18px;
  transition: background .13s, color .13s, transform .12s;
  z-index: 9999;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #98B1A2;
  color: #fff;
  outline: none;
  transform: scale(1.12) rotate(10deg);
}

/* Hide nav for mobile, show hamburger */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ----- MOBILE MENU ----- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(54,84,62, .98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Montserrat', Arial, sans-serif;
  z-index: 10000;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(0.77,0,0.175,1);
  box-shadow: -5px 0 24px rgba(54,84,62,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  margin: 18px 30px 0 0;
  align-self: flex-end;
  cursor: pointer;
  font-family: inherit;
  transition: color .16s, transform .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #98B1A2;
  transform: scale(1.18) rotate(7deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding: 40px 40px 0 0;
  width: 100vw;
  max-width: 400px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  font-weight: 700;
  padding: 12px 12px 12px 0;
  border-radius: 0 30px 30px 0;
  width: 90%;
  transition: background .18s, color .18s;
  margin-right: 0;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #98B1A2;
  color: #222;
}

/* ----- HERO / CTA ----- */
.hero {
  background: #E3F7EE;
  padding: 38px 0 32px 0;
  width: 100%;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 40px 0 rgba(54,84,62,0.10);
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #36543E;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0px 1px 24px #c9ead9;
}
.hero .subheadline {
  font-size: 1.25rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #4B6757;
  margin-bottom: 25px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cta {
  background: #FFFAE0;
  border-radius: 30px;
  box-shadow: 0 6px 32px rgba(246,206,83,0.08);
  padding: 38px 0 36px 0;
  margin-bottom: 60px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: ctaPopIn .72s cubic-bezier(.67,-0.07,.37,1.18);
}
@keyframes ctaPopIn {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1); }
}

/* ----- BUTTONS ----- */
.button-primary, .button-primary:visited {
  display: inline-block;
  background: linear-gradient(91deg, #98B1A2 0%, #36543E 98%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 42px;
  font-size: 1.1rem;
  padding: 14px 36px;
  margin: 10px 0 0 0;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(54,84,62,0.18), 0 2px 6px #e3f7ee;
  transition: background .18s, color .16s, transform .14s;
  text-shadow: 0px 0px 12px #36543E17;
}
.button-primary:hover, .button-primary:focus {
  background: linear-gradient(94deg, #62C6AB 0%, #36543E 99%);
  color: #F5F2EA;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
  outline: none;
}

.button-secondary {
  display: inline-block;
  background: #fff;
  color: #36543E;
  border: 2px solid #36543E;
  border-radius: 28px;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background .14s, color .13s, border .14s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #36543E;
  color: #fff;
  border-color: #98B1A2;
}

/* ----- FEATURES, SERVICES & CARDS ----- */
.features-grid, .features-icons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 24px 0 0 0;
}
.features-grid > div {
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  min-width: 210px;
  flex: 1 1 230px;
  box-shadow: 0 2px 14px rgba(54,84,62,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: cardShake .90s cubic-bezier(.23,1.19,.63,1.37) forwards 1;
  margin-bottom: 8px;
  position: relative;
  transition: box-shadow .13s, transform .17s;
}
.features-grid > div:hover {
  box-shadow: 0 7px 32px rgba(98,177,162,0.12);
  transform: translateY(-4px) scale(1.03) rotate(1.2deg);
}
@keyframes cardShake {
  0%{transform:rotate(-6deg) scale(.96);opacity:0;}
  45%{transform:rotate(8deg) scale(1.03); opacity:.92;}
  70%{transform:rotate(-3deg) scale(.99);}
  100%{transform:rotate(0) scale(1);opacity:1;}
}
.features-grid img, .features-icons img {
  height: 56px;
  margin-bottom: 14px;
  filter: drop-shadow(0px 2px 7px #e3f7ee);
  will-change: filter;
  transition: filter .11s;
}
.features-grid h3 {
  margin-bottom: 9px;
  color: #62C6AB;
  font-size: 1.22rem;
}

.services-list, .articles-list, .feature-list, .features-grid ul {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  width: 100%;
}
.services-list li, .feature-list li, .features-grid ul li {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 24px 20px 18px 26px;
  color: #36543E;
  box-shadow: 0 2px 10px rgba(152,177,162,.07);
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow .13s, background .12s;
  position: relative;
}
.services-list li:hover, .feature-list li:hover, .features-grid ul li:hover {
  background: #FFFAE0;
  box-shadow: 0 7px 24px rgba(246,206,83,0.09);
}

.articles-list li {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px rgba(152,177,162,.07);
  font-size: 1.03rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
}
.articles-list li strong {
  color: #36543E;
}
.category-filter {
  margin-top: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #36543E;
  letter-spacing: .01em;
  font-weight: 500;
  padding: 8px 0;
}
.category-filter span {
  color: #A5C7B3;
  font-size: .99em;
  margin-left: 6px;
}

.features-icons img {
  width: 52px;
  height: 52px;
  margin: 0 8px 0 0;
}

/* ----- INFO, TEXT, & MODAL ----- */
.text-section {
  margin-top: 6px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-box {
  border-radius: 16px;
  background: #E3F7EE;
  padding: 14px 20px;
  color: #164b29;
  margin-top: 16px;
  font-size: 1.06rem;
  box-shadow: 0 1px 8px #62c6ab1a;
}
.service-details {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(152,177,162,.07);
  padding: 23px 16px;
  margin-top: 14px;
}
.confirmation {
  min-height: 350px;
  padding: 32px 0;
}

/* ----- FOOTER ----- */
footer {
  background: #fff;
  border-radius: 50px 50px 0 0;
  margin-top: 70px;
  box-shadow: 0 -5px 20px #263a2f0d;
}
footer .container {
  padding: 32px 20px;
}
footer .content-wrapper {
  align-items: center;
  gap: 22px;
  text-align: center;
}
footer img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
  margin: 12px 0 8px;
}
.footer-nav a {
  color: #98B1A2;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .14s;
  border-radius: 14px;
  padding: 4px 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #36543E;
  background: #F5F2EA;
}

/* ----- COOKIE CONSENT BANNER ----- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15000;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 28px #36543e29;
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 96%;
  max-width: 540px;
  margin: 0 auto;
  opacity: 1;
  transition: opacity .25s cubic-bezier(.7,1.4,.2,1), transform .32s cubic-bezier(.72,1.5,.19,1.01);
  animation: cookiePop .46s cubic-bezier(.7,1.58,.2,1.13) 1;
}
@keyframes cookiePop {
  0%{ transform: translateY(120px); opacity: .01; }
  70%{ transform: translateY(-10px); opacity: 1;}
  100%{ transform: translateY(0);opacity:1;}
}
.cookie-banner .cookie-text {
  color: #36543E;
  font-size: 1.03rem;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  padding: 12px 22px;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s;
  margin-right: 8px;
}
.cookie-banner .accept {
  background: #36543E;
  color: #fff;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: #62C6AB;
  color: #fff;
}
.cookie-banner .reject {
  background: #f35627;
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #36543E;
  color:#fff;
}
.cookie-banner .settings {
  background: #FFFAE0;
  color: #36543E;
}
.cookie-banner .settings:hover {
  background: #98B1A2;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-bg {
  position: fixed;
  z-index: 16000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #28332a69;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn .21s cubic-bezier(.7,1.4,.2,1);
  backdrop-filter: blur(2px);
}
@keyframes modalIn {
  0%{ opacity:0; }
  100%{ opacity:1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px #36543e29;
  padding: 35px 24px 28px 24px;
  max-width: 400px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  animation: modalCardIn .31s cubic-bezier(.73,1.26,.26,1) 1;
}
@keyframes modalCardIn {
  0% { transform: scale(0.8) rotate(-8deg); opacity: 0;}
  70% { transform: scale(1.10) rotate(2deg); opacity: 1;}
  100%{ transform: scale(1) rotate(0); opacity: 1;}
}
.cookie-modal h2 {
  color: #36543E;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F5F2EA;
  border-radius: 14px;
  padding: 13px 17px;
  font-size: 1.05rem;
}
.cookie-category .toggle {
  accent-color: #36543E;
  width: 22px; height: 22px;
}
.cookie-category.essential {
  color: #ccc;
  opacity: .6;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .modal-btns button {
  padding: 10px 20px;
  border-radius: 18px;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  background: #36543E;
  color: #fff;
  transition: background .16s;
  cursor: pointer;
}
.cookie-modal .modal-btns button:hover {
  background: #98B1A2;
}

/* ----- UTILITIES & MICROS ----- */
::-webkit-input-placeholder { color: #7DA584; }
::placeholder { color: #7DA584; }

@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 8px;
  }
  .footer-nav {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section {
    margin-bottom: 44px;
    padding: 32px 4px;
  }
  .content-grid, .features-grid, .card-container, .features-icons {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .hero, .cta {
    padding: 26px 0 23px 0;
    border-radius: 0 0 20px 20px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
  .services-list li, .feature-list li {
    padding: 18px 12px;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 13px;
    font-size: .97rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
@media (max-width: 550px) {
  .button-primary,
  .button-secondary {
    padding: 11px 18px;
    font-size: 0.98rem;
  }
  .cookie-banner {
    max-width: 99vw;
    border-radius: 12px 12px 0 0;
    padding: 16px 4px 12px 6px;
  }
}

/* ----- PLAYFUL, DYNAMIC EXTRAS ----- */
.hero:after {
  content: '';
  position: absolute;
  top: -40px; right: -80px;
  width: 180px; height: 180px;
  background: #fff9c1;
  opacity: .32;
  z-index: 0;
  border-radius: 90px 90px 0 0;
  pointer-events: none;
  animation: bouncyShape 6s infinite cubic-bezier(.7,1.4,.2,1.21) alternate;
}
@keyframes bouncyShape {
  0%{transform:rotate(-7deg) scale(1);}
  33%{transform:rotate(9deg) scale(1.08);}
  60%{transform:scale(.96) rotate(2deg);}
  100%{transform:rotate(-6deg) scale(1.13);}
}

.features-grid > div:before {
  content: '';
  position: absolute;
  top: -22px; left: 25px;
  width: 36px; height: 18px;
  background: #62C6AB;
  border-radius: 19px 11px 18px 28px;
  opacity: 0.25;
  z-index: 0;
  transform: rotate(-14deg);
  pointer-events: none;
  filter: blur(7px);
}

.testimonial-card:after {
  content:'';
  display:block;
  position: absolute;
  left: -30px; bottom: 12px;
  background: #F6CE53;
  width: 36px; height: 36px;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  animation: testimonialDot 4s infinite alternate cubic-bezier(.7,1.4,.2,1.13);
}
@keyframes testimonialDot {
  0%{ transform: scale(.8) translateY(0); }
  53%{ transform: scale(1.14) translateY(-7px); }
  100%{ transform: scale(.87) translateY(6px); }
}

.button-primary {
  animation: buttonPop .67s cubic-bezier(.65,-0.05,.37,1.14) 1;
}
@keyframes buttonPop {
  0% { transform: scale(.86) rotate(-3deg); opacity: .7;}
  65%{ transform: scale(1.09) rotate(2deg); opacity: 1; }
  100%{ transform: scale(1) rotate(0); }
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
  width: 10px; background: #F5F2EA;
}
::-webkit-scrollbar-thumb {
  background: #98B1A2;
  border-radius: 5px;
}

/* ----- CUSTOM FONTS (for Google Fonts) ----- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap');

/* ----- FOCUS OUTLINE FOR ACCESSIBILITY ----- */
a:focus,.button-primary:focus,.button-secondary:focus,button:focus {
  outline: 2px solid #62C6AB;
  outline-offset: 1.5px;
}

/* Make sure required spacing between sections is present */
section {
  margin-bottom: 54px;
}

/* ----- END ----- */
