/* RESET & BASE TYPOGRAPHY */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #F6F6F1;
  color: #38475A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #23604B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #6B8D82;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
strong, b {
  font-weight: 600;
  color: #38475A;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #dde6e8;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: #F6F6F1;
}

/* BRAND TYPOGRAPHY */
h1, .h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.25rem;
  color: #23604B;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: 'Merriweather', serif;
  font-size: 1.75rem;
  color: #38475A;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  color: #23604B;
  font-weight: 500;
  margin-bottom: 12px;
}
p, .tagline, .brand-tagline {
  font-size: 1rem;
  margin-bottom: 16px;
}
.brand-tagline, .tagline {
  color: #6B8D82;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 18px;
}
.price, .service-price {
  color: #23604B;
  font-size: 1.1rem;
  margin-left: 6px;
  font-weight: 600;
}

/* CONTAINER & MAIN LAYOUT */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* SECTION SPACING (MANDATORY) */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(56,71,90,0.06);
  /* Organic edge, subtle drop shadow */
  position: relative;
}
section:last-of-type {
  margin-bottom: 0;
}

/* ORGANIC SHAPES - sections get curved mask (hint with pseudo) */
section::before {
  content: "";
  position: absolute;
  top: -18px; left: 40px; right: 40px;
  height: 24px;
  background: #dde6e8;
  border-radius: 50% 50% 0 0/75% 75% 0 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
section > .container, section > div.container {
  position: relative;
  z-index: 1;
}

/* NAVIGATION */
header {
  background: #dde6e8;
  border-bottom: 2px solid #6b8d82;
  position: sticky;
  top: 0;
  z-index: 8000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #38475A;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1rem;
  padding: 7px 15px;
  border-radius: 22px;
  transition: background .2s, color .2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #23604B;
  color: #fff;
}
header img {
  max-height: 52px;
  margin-right: 18px;
}

/* MOBILE MENU BUTTON/ICON */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #38475A;
  cursor: pointer;
  margin-left: 16px;
  z-index: 8111;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #c3dbc7;
  color: #23604B;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(221,230,232,0.96);
  box-shadow: 0 8px 32px 0 rgba(56,71,90,0.08);
  z-index: 10000;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(0.86,0,0.07,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #38475A;
  align-self: flex-end;
  margin: 25px 25px 5px 0;
  cursor: pointer;
  border-radius: 50%;
  padding: 10px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #c3dbc7;
  color: #23604B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  margin-top: 16px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 20px 38px;
  color: #23604B;
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid #cbe4de;
  text-align: left;
  background: transparent;
  transition: background .18s, color .18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #c3dbc7;
  color: #38475A;
}

/* --- MAIN BUTTONS (CTA) --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  min-height: 46px;
  border-radius: 28px 36px 22px 36px/28px 34px 28px 36px;
  box-shadow: 0 2px 16px 0 rgba(35,96,75,0.10);
  padding: 10px 38px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  text-align: center;
  text-decoration: none;
  background: #23604B;
  color: #fff;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background .15s, color .15s, box-shadow .32s;
  outline: none;
}
.cta.primary {
  background: #23604B;
  color: #fff;
}
.cta.secondary {
  background: #dde6e8;
  color: #23604B;
  border: 2px solid #23604B;
}
.cta:hover, .cta:focus {
  background: #6B8D82;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(35,96,75,0.19);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #6B8D82;
  color: #fff;
  border-color: #6B8D82;
}

/* FEATURES/FLEX GRIDS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  align-items: stretch;
}
.feature {
  background: #F6F6F1;
  border-radius: 32px 24px 32px 36px/26px 32px 38px 36px;
  box-shadow: 0 2px 12px 0 rgba(107,141,130,0.10);
  padding: 24px 26px 20px 26px;
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  border-left: 5px solid #23604B;
  transition: box-shadow .18s, border .15s;
  position: relative;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 24px 0 rgba(35,96,75,0.13);
  border-left: 5px solid #6B8D82;
  z-index: 2;
}
.feature img {
  width: 40px; height: 40px;
  margin-bottom: 8px;
}

/* FLEXIBLE CARD CONTAINERS (MANDATORY CLASSES) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(56,71,90,0.08);
  position: relative;
  padding: 22px 22px 20px 22px;
  min-width: 220px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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 STYLES */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #DDE6E8;
  border-radius: 28px 32px 32px 36px/32px 28px 36px 34px;
  box-shadow: 0 1px 12px 0 rgba(35,96,75,0.10);
  margin-bottom: 20px;
  color: #38475A;
  font-size: 1.08rem;
  flex-wrap: wrap;
  border-left: 4px solid #6B8D82;
  min-width: 220px;
}
.testimonial-card p {
  margin: 0 0 7px 0;
  color: #38475A;
  font-style: italic;
  font-size: 1.09rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: #23604B;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* SECTION, LIST, SPACING */
ul, ol {
  margin-bottom: 18px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 14px;
}

/* SERVICE LISTS, COURSE LISTS, ETC */
.service-list, .course-list {
  list-style-type: disc;
}
.service-list li, .course-list li {
  background: #F6F6F1;
  border-radius: 19px;
  margin-bottom: 15px;
  padding: 10px 16px 10px 22px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  border-left: 3px solid #6B8D82;
  justify-content: space-between;
}
.service-list li strong {
  color: #23604B;
}

/* FOOTER */
footer {
  background: #dde6e8;
  padding: 40px 0 20px 0;
  border-top: 2px solid #6b8d82;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: #23604B;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus { color: #38475A; }
.footer-brand img {
  width: 56px; height: 56px;
  margin-bottom: 8px;
}
footer p {
  font-size: 0.97rem;
  color: #38475A;
  line-height: 1.62;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #23604B;
  color: #fff;
  box-shadow: 0 -2px 24px 0 rgba(56,71,90,0.15);
  z-index: 10001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 12px 22px 12px;
  flex-direction: row;
  gap: 30px;
  transition: transform 0.4s cubic-bezier(0.81,0,0.18,1);
  font-size: 1.03rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  max-width: 420px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 110px;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 1rem;
  margin-top: 6px;
  cursor: pointer;
  background: #dde6e8;
  color: #23604B;
  font-weight: 600;
  border: none;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.cookie-banner button.primary {
  background: #6B8D82;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #c3dbc7;
  color: #23604B;
}
.cookie-banner button.primary:hover, .cookie-banner button.primary:focus {
  background: #38475A;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 11000;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35,96,75, 0.25);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s cubic-bezier(0.81,0,0.18,1);
}
.cookie-modal.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #fff;
  color: #38475A;
  border-radius: 32px;
  max-width: 390px;
  width: 90%;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 6px 32px 0 rgba(35,96,75,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  animation: popIn .38s cubic-bezier(0.81,0,0.18,1);
}
@keyframes popIn {
  0% { transform: scale(0.95) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1.7rem;
  border: none;
  background: none;
  color: #23604B;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #dde6e8;
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #23604B;
  margin-bottom: 12px;
}
.cookie-preference-category {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}
.cookie-preference-category input[type=checkbox] {
  accent-color: #23604B;
  width: 20px; height: 20px;
}
.cookie-preference-category label {
  font-size: 1rem;
  color: #38475A;
}
.cookie-preference-category .essential-label {
  font-weight: bold;
  color: #23604B;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal button {
  min-width: 110px;
  padding: 10px 22px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  cursor: pointer;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.feature, .card, .testimonial-card, .cta, .feature-item, .cookie-banner button, .cookie-modal-dialog {
  transition: box-shadow 0.18s, border-color 0.18s, background 0.18s, color 0.18s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container { max-width: 94vw; }
  section { padding-left: 10px; padding-right: 10px; }
  section::before { left: 18px; right: 18px; }
}
@media (max-width: 900px) {
  .features-grid {
    gap: 18px;
  }
  .feature {
    min-width: 170px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.08rem; }
  .section, section {
    margin-bottom: 38px;
    padding: 23px 7px 25px 7px;
    border-radius: 18px;
  }
  section::before {
    left: 3px; right: 3px; height: 14px;
  }
  .container{
    padding: 0 6px;
  }
  .features-grid, .card-container, .content-grid {
    gap: 14px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .testimonial-card{
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 15px;
    border-radius: 20px;
  }
  .cookie-banner {
    padding: 18px 3px 15px 3px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions{ gap: 10px; margin-top: 7px; }
}
@media (max-width: 650px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .feature, .card {
    min-width: 90%;
    padding: 14px 8px;
  }
  h1 { font-size: 1.16rem; }
  .section, section{ padding: 13px 1.5vw; }
}
@media (max-width: 416px) {
  .card, .feature {
    min-width: 98vw;
    border-radius: 10px;
  }
}

/* FLEX DIRECTION FOR TEXT-IMAGE SECTIONS ON MOBILE */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ENHANCED ORGANIC/NATURE TEXTURES (SUBTLE BG) */
body {
  background: linear-gradient(120deg, #f6f6f1 80%, #dde6e8 100%);
}
section {
  background: linear-gradient(120deg, #fff 86%, #f6f6f1 100%);
  border: 1.1px solid #dde6e8;
}

/* ORGANIC DECORATIVE ELEMENTS */
.feature::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -13px; right: 18px;
  width: 29px; height: 18px;
  background: url('../assets/leaf-texture.svg') no-repeat center center/contain;
  opacity: .15;
  pointer-events: none;
}
.card::after {
  content: '';
  display: block;
  position: absolute;
  top: -10px; left: 6px;
  width: 18px; height: 14px;
  background: url('../assets/leaf-texture.svg') no-repeat center center/contain;
  opacity: .12;
  pointer-events: none;
}

/* AUTOFOCUS OUTLINE ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #23604B;
  outline-offset: 2px;
}

/* PRINT ADAPTATIONS */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body, section, .container { background: #fff !important; color: #38475A !important; }
}
