/* RESET & BASE --------------------------------------------------------- */
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: #f7f3ec;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #234247;
  background: #f7f3ec;
  line-height: 1.63;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #235647;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #87a64d;
  outline: none;
}
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.4em;
}
strong {
  font-weight: 600;
}
hr {
  border: 0;
  border-top: 1px solid #d7e4e0;
  margin: 32px 0;
}

/* TYPOGRAPHY ------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #235647;
  letter-spacing: 0.01em;
  line-height: 1.13;
  margin-bottom: 16px;
  font-weight: 600;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #234247;
}
h2 {
  font-size: 2rem;
  margin-top: 24px;
  color: #235647;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
  color: #39516e;
}
h4, h5, h6 {
  font-size: 1rem;
  color: #476768;
  margin-bottom: 10px;
}
p, .text-section p {
  font-size: 1.08rem;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #234247;
}

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

/* FLEXBOX LAYOUTS -------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 16px 0;
}
.feature-grid > div {
  background: #ffffffcc;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(58, 103, 77, 0.070);
  padding: 28px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 292px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.23s cubic-bezier(.39,.58,.57,1), transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 36px 0 rgba(35,86,71,0.12);
  transform: translateY(-4px) scale(1.025);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdfb;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(165,180,172,0.10);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s cubic-bezier(.39,.58,.57,1), transform 0.17s;
}
.card:hover {
  box-shadow: 0 3px 20px 0 rgba(35, 86, 71, 0.13);
  transform: translateY(-3px) scale(1.014);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px; 
  padding: 26px 28px 22px 28px;
  background: #f5faf8;
  border-radius: 18px;
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 2px 10px 0 rgba(67,107,91,0.09);
  font-size: 1.08rem;
  color: #234247;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.18s;
  border: 1px solid #e7efe9;
}
.testimonial-card strong {
  margin-top: 12px;
  color: #235647;
  font-size: 1em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(35,86,71,0.15);
  transform: translateY(-4px) scale(1.025);
}
.faq-snippet ul {
  margin-top: 10px;
}
.faq-snippet li {
  margin-bottom: 8px;
}

/* Feature Items (spacing helpers for future content) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS & CTAs --------------------------------------------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #87a64d;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  border-radius: 28px;
  border: none;
  padding: 12px 36px;
  margin-top: 14px;
  box-shadow: 0 1px 6px 0 rgba(135, 166, 77, 0.09);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  outline: none;
}
.cta.primary {
  background: #235647;
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #7dc290;
  color: #234247;
  transform: scale(1.028);
}
.cta.primary:hover, .cta.primary:focus {
  background: #405e4e;
  color: #e7f7ec;
}

/* HEADER & NAVIGATION ---------------------------------------------------- */
header {
  background: #f7faf7;
  box-shadow: 0 1px 16px 0 rgba(35,86,71,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 26px;
  position: relative;
}
header img {
  height: 44px;
  object-fit: contain;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #39516e;
  padding: 8px 2px;
  border-radius: 8px;
  transition: color 0.20s, background 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #ecf6ed;
  color: #235647;
}
header .cta.primary {
  margin-left: 16px;
  margin-top: 0;
  font-size: 1.1rem;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #235647;
  cursor: pointer;
  padding: 8px;
  z-index: 1003;
}
/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(243, 248, 243, 0.98);
  z-index: 1100;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.48,0,.44,1);
  overflow-y: auto;
  padding-top: 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
  box-shadow: -2px 0 42px 0 rgba(73,103,87,0.20);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #39516e;
  border: none;
  cursor: pointer;
  margin-left: 24px;
  margin-bottom: 12px;
  z-index: 1110;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #87a64d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding-left: 36px;
  padding-top: 12px;
}
.mobile-nav a {
  font-size: 1.14rem;
  line-height: 1.8;
  color: #235647;
  background: transparent;
  border-radius: 8px;
  padding: 7px 9px;
  transition: background 0.13s, color 0.13s;
  min-width: 66vw;
  margin-right: 10vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e1ecd2;
  color: #87a64d;
}

/* MAIN ------------------------------------------------------------------- */
main {
  padding-top: 40px;
  margin-bottom: 120px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}

/* CARDS ------------------------------------------------------------------ */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* FOOTER ----------------------------------------------------------------- */
footer {
  background: #f7faf9;
  border-top: 1px solid #e2efea;
  margin-top: 60px;
  padding: 40px 0 16px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #476768;
  padding: 2px 6px;
  border-radius: 6px;
  transition: color 0.14s, background 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #235647;
  background: #edfaee;
}
footer div {
  font-size: 0.97rem;
  color: #7b9c8a;
}

/* COOKIE CONSENT BANNER -------------------------------------------------- */
.cookie-banner {
  display: flex;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1300;
  width: 100%;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid #dce9e2;
  box-shadow: 0 -1px 16px 0 rgba(35,86,71,0.09);
  align-items: flex-start;
  justify-content: center;
  padding: 18px 12px 14px 12px;
  gap: 24px;
  animation: cookieBannerSlideUp 0.7s cubic-bezier(.21,.95,.45,1.01);
}
@keyframes cookieBannerSlideUp {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  color: #234247;
  font-size: 1.05rem;
  max-width: 440px;
  display: flex;
  align-items: center;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn, .cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  border-radius: 20px;
  border: none;
  padding: 8px 22px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 0.5px 4px 0 rgba(146,179,140,0.06);
  transition: background 0.17s, color 0.15s, transform 0.15s;
  outline: none;
}
.cookie-btn-accept {
  background: #235647;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #39516e;
  color: #e0fceb;
}
.cookie-btn-reject {
  background: #f6e8e0;
  color: #235647;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #f1d2e5;
  color: #ad2753;
}
.cookie-btn-settings {
  background: #87a64d;
  color: #fff;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #afc97a;
  color: #2b4833;
}

/* COOKIE MODAL ----------------------------------------------------------- */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,44,30, 0.41);
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.4s cubic-bezier(.43,.88,.44,1.04);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 2px 38px 0 rgba(35,86,71,0.16);
  padding: 36px 38px 28px 38px;
  max-width: 420px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: cookieDialogPopin 0.37s cubic-bezier(.27,.99,.34,1.10);
  position: relative;
}
@keyframes cookieDialogPopin {
  0% { opacity: 0; transform: scale(0.93); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: #235647;
  font-weight: 600;
  margin-bottom: 8px;
}
.cookie-modal-category {
  margin-bottom: 16px;
  font-size: 1.01rem;
  font-weight: 500;
}
.cookie-modal-category label {
  font-weight: 400;
  color: #234247;
  margin-left: 6px;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #87a64d;
  margin-right: 3px;
}
.cookie-modal-category input[disabled] {
  accent-color: #b4cdd7;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.55rem;
  color: #235647;
  cursor: pointer;
  opacity: 0.7;
  z-index: 4;
  transition: color 0.13s, opacity 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #87a64d;
  opacity: 1;
}

/* MICRO-INTERACTIONS ----------------------------------------------------- */
button, [type='button'], [type='submit'], [role='button'] {
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.14s, transform 0.13s; 
}
button:active {
  filter: brightness(96%);
  transform: scale(0.98);
}

/* RESPONSIVE ------------------------------------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid > div, .testimonial-card { min-width: 180px; max-width: 100%; }
}
@media (max-width: 860px) {
  .content-wrapper { max-width: 99vw; }
  main { padding-top: 28px; }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .section,
  section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    padding: 0;
    gap: 13px;
  }
  .feature-grid {
    gap: 13px;
  }
  .feature-grid > div {
    padding: 18px 11px;
  }
  .card-container {
    gap: 11px;
  }
  .testimonial-slider {
    gap: 10px;
  }
  .testimonial-card {
    padding: 16px 8px 14px 14px;
    font-size: 1em;
    min-width: 120px;
    max-width: 100vw;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  header .container {
    padding-right: 0;
    gap: 12px;
    height: 54px;
  }
  header nav,
  header .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    background: transparent;
    position: absolute;
    top: 12px; right: 12px;
    z-index: 1500;
    border-radius: 8px;
    padding: 5px 8px;
    box-shadow: 0 1px 8px 0 rgba(35,86,71,0.08);
  }
  .mobile-menu {
    display: flex;
    align-items: flex-start;
    padding-top: 38px;
  }
}

@media (max-width: 500px) {
  main { margin-bottom: 180px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 5px 11px 6px;
  }
  .cookie-banner-actions {
    gap: 8px;
    flex-wrap: wrap;
  }
  .cookie-banner-text {
    font-size: 0.98rem;
    max-width: 94vw;
  }
  .cookie-modal-dialog {
    max-width: 94vw;
    padding: 22px 3vw 17px 5vw; 
  }
}

/* SOFT PASTEL GRADIENT & DECORATIVE CURVES ------------------------------- */
.hero-gradient-bg {
  background: linear-gradient(110deg, #f7f3ec 23%, #e7f7ec 100%);
  border-radius: 20px;
  margin-bottom: 28px;
}
.dreamy-curve {
  position: absolute;
  left: -25vw;
  top: -40px;
  width: 130vw;
  height: 160px;
  background: linear-gradient(88deg, #f7f3ec 69%, #b9dfc7 100%);
  opacity: 0.15;
  z-index: 0;
  border-radius: 300px 300px 0 0;
}

/* MISC & HIERARCHY ------------------------------------------------------- */
ul > li > strong, ol > li > strong {
  color: #39516e;
  font-weight: 600;
}
ul > li > span, ol > li > span {
  color: #73887b;
  margin-left: 4px;
}

/* LINK OVERRIDES SPACING ------------------------------------------------- */
.card-content a.cta, .text-section a.cta, .content-wrapper > a.cta {
  margin-top: 14px;
}

/* SELECTION COLORS ------------------------------------------------------- */
::selection {
  background: #bde5ce;
  color: #153d2c;
}

/* ACCESSIBILITY ---------------------------------------------------------- */
:focus-visible {
  outline: 2px solid #87a64d;
  outline-offset: 2px;
}

/* END OF STYLE ----------------------------------------------------------- */

