/* -----------------------------------------------------------
   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,
main, 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #fff;
  color: #23281a;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
a {
  color: #25603B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #83A754;
  outline: none;
}
ul, ol { margin-left: 20px; }
li { margin-bottom: 8px; }
strong { font-weight: 700; }

/* -----------------------------------------------------------
   BRAND TYPOGRAPHY & SCALE
----------------------------------------------------------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: local('Playfair Display Bold'), local('PlayfairDisplay-Bold'), url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #25603B;
  margin-bottom: 16px;
  line-height: 1.17;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
p, .text-section p {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23281a;
  margin-bottom: 14px;
}
.text-section {
  margin-bottom: 16px;
}
@media (min-width:600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
}

/* -----------------------------------------------------------
   CONTAINER & LAYOUTS (Flexbox only)
----------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 14px 0 rgba(37, 96, 59, 0.05);
}

@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 8px;
  margin-left: 0;
}
.feature-grid li {
  flex: 1 1 190px;
  min-width: 170px;
  background: #F2EFE6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  padding: 18px 18px;
  color: #25603B;
  box-shadow: 0 2px 8px 0 rgba(37,96,59,0.07);
}
.feature-grid img {
  width: 32px;
  height: 32px;
}
ul, ol {
  padding-left: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(37, 96, 59, 0.06);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(37, 96, 59, 0.11);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #F2EFE6;
  border-radius: 16px;
  box-shadow: 0 1.5px 15px 0 rgba(37, 96, 59, 0.05);
  padding: 20px 20px 18px 20px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 480px;
  color: #1C2416;
  font-size: 1rem;
  margin-right: 18px;
}
.testimonial-card:last-child {
  margin-right: 0;
}
.testimonial-card span {
  font-size: 0.93em;
  color: #25603B;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-card p {
  margin-bottom: 0;
  color: #23281a;
}
.testimonial-card div {
  font-size: 1.25em;
  color: #83A754;
  letter-spacing: .12em;
  font-family: inherit;
}

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

/* Ensure testimonial text always has good color contrast on light backgrounds */
.testimonial-card p, .testimonial-card span { color: #23281a; }

/* ----- Prices, emphasis ---- */
.price {
  color: #25603B;
  font-weight: 700;
  font-size: 1.01em;
  background: #F2EFE6;
  margin-left: 8px;
  border-radius: 7px;
  padding: 2px 8px;
}

/* -----------------------------------------------------------
   HEADER & MAIN NAVIGATION
----------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(37, 96, 59, 0.06);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #25603B;
  font-weight: 500;
  position: relative;
  padding: 2px 0;
  transition: color 0.2s;
}
nav a:hover, nav a.active {
  color: #83A754;
}
/* CTA BUTTON STYLE */
.cta-btn {
  background: #25603B;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  margin-left: 24px;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(37,96,59,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-align: center;
  display: inline-block;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #83A754;
  color: #fff;
  box-shadow: 0 7px 20px 0 rgba(131,167,84,0.09);
  outline: none;
}
@media (max-width:900px) {
  header .container {
    gap: 8px;
  }
  nav {
    gap: 14px;
  }
}
@media (max-width: 800px) {
  header .container {
    flex-wrap: wrap;
  }
  nav {
    gap: 10px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 10px 18px;
  }
}
@media (max-width: 700px) {
  header .container {
    flex-wrap: wrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
}

/* -----------------------------------------------------------
   MOBILE MENU (burger, overlay, menu items)
----------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  background: #F2EFE6;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  color: #25603B;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 50;
  transition: background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #e1e1d7;
  outline: none;
}
@media (max-width: 700px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(37, 96, 59, 0.94);
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.3s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 28px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 24px;
  cursor: pointer;
  z-index: 10002;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 50%;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(130,167,84,0.16);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 65px;
  gap: 20px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 600;
  text-align: center;
  padding: 12px 22px;
  border-radius: 6px;
  width: 100%;
  display: block;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #83A754;
  color: #fff;
}
@media (min-width: 701px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
footer {
  background: #F2EFE6;
  color: #25603B;
  font-size: 1rem;
  margin-top: 60px;
  border-top: 1px solid #e7e7de;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px 20px 20px;
  gap: 18px;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
footer nav a {
  color: #25603B;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #83A754;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px;
  }
}

/* -----------------------------------------------------------
   BUTTONS & UI ELEMENTS
----------------------------------------------------------- */
button, .cta-btn, input[type="submit"], input[type="button"] {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s, box-shadow 0.18s;
  outline: none;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

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

/* -----------------------------------------------------------
   RESPONSIVE DESIGN
----------------------------------------------------------- */
@media (max-width: 900px) {
  .container {
    padding-left: 8px; padding-right: 8px;
  }
  .section {
    padding-left: 10px; padding-right: 10px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

/* For testimonials - horizontally on desktop, vertically stacked on mobile */
@media (min-width: 900px) {
  .testimonial-card {
    min-width: 360px;
    margin-right: 28px;
    margin-bottom: 16px;
    display: flex;
    flex: 1 1 330px;
  }
}
@media (max-width:700px){
  .testimonial-card {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/* -----------------------------------------------------------
   COOKIE CONSENT BANNER + MODAL
----------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;
  width: 100%;
  background: #fff;
  box-shadow: 0 -9px 40px 0 rgba(37,96,59,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  font-size: 1rem;
  border-top: 1.5px solid #e2e4cf;
  transition: transform 0.3s, opacity 0.2s;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 0%;
}
.cookie-banner-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #25603B;
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  margin: 0;
  transition: background 0.2s;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #83A754;
  color: #fff;
}
.cookie-settings-btn {
  background: transparent;
  color: #25603B;
  border: 1.5px solid #25603B;
  padding: 9px 18px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F2EFE6;
  color: #25603B;
  border-color: #83A754;
}
@media (max-width:700px){
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 10px;
    font-size: 0.96rem;
  }
}

/* Cookie settings/modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: rgba(37,96,59,0.53);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 360px;
  width: 92vw;
  padding: 36px 20px 20px 20px;
  box-shadow: 0 10px 46px rgba(37,96,59,0.23);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 11001;
  animation: popin .27s cubic-bezier(.5, 1.5, .5, 1);
}
@keyframes popin {
  from {transform: scale(.93); opacity:0;}
  to {transform: scale(1); opacity:1;}
}
.cookie-modal h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #25603B;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-toggle {
  appearance: none;
  background: #F2EFE6;
  width: 36px; height: 22px;
  border-radius: 12px;
  position: relative;
  outline: none;
  margin-right: 12px;
  transition: background 0.2s;
  border: 1.5px solid #a0ae87;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #83A754;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  background: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  transition: transform 0.2s;
  box-shadow: 0px 1px 5px 0px rgba(37, 96, 59, 0.10);
}
.cookie-toggle:checked::before {
  transform: translateX(14px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 14px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.2em;
  color: #25603B;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F2EFE6;
  color: #83A754;
}

/* Essential cookies - disabled toggle appearance (always enabled) */
.cookie-modal-category input[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* -----------------------------------------------------------
   MISC: FORM, FAQ, ETC. (MINIMALIST)
----------------------------------------------------------- */
input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 12px;
  border: 1.5px solid #e0e5db;
  border-radius: 7px;
  background: #fff;
  color: #23281a;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color 0.15s;
}
input:focus, textarea:focus {
  border-color: #83A754;
  outline: none;
}

/* FAQ, micro-interactions */
.faq-item {
  border-radius: 8px;
  background: #F2EFE6;
  padding: 16px;
  margin-bottom: 16px;
}
.faq-question {
  cursor: pointer;
  font-weight: 600;
  position: relative;
}
.faq-answer {
  margin-top: 7px;
  display: none;
  color: #325330;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInQ .3s;
}
@keyframes fadeInQ {
  from{opacity:0;}to{opacity:1;}
}

/* -----------------------------------------------------------
   UTILITY CLASSES
----------------------------------------------------------- */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-column { flex-direction: column; }
.gap-24 { gap: 24px; }
.gap-16 { gap: 16px; }

/* -----------------------------------------------------------
   ACCENT DECORATIONS (Minimalist, only when present)
----------------------------------------------------------- */
hr {
  border: 0;
  border-top: 1.5px solid #e2e4cf;
  margin: 34px 0;
}

/* Hide outline for all :active/pressed buttons/links, but show for :focus-visible for accessibility */
:active:not(:focus-visible), a:active:not(:focus-visible), button:active:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid #83A754;
}

/* -----------------------------------------------------------
   COLOR ACCESSIBILITY UTILITIES
----------------------------------------------------------- */
.bg-light { background: #F2EFE6 !important; }
.text-green { color: #25603B !important; }
.text-secondary { color: #83A754 !important; }
.text-dark { color: #23281a !important; }

/* -----------------------------------------------------------
   MICRO-ANIMATIONS: hover subtle shadow, etc.
----------------------------------------------------------- */
.card, .testimonial-card, .feature-grid li {
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover, .feature-grid li:hover {
  box-shadow: 0 5px 28px 0 rgba(37,96,59,0.10);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(37,96,59,0.14);
  transform: scale(1.014);
}

/* -----------------------------------------------------------
   PRINT & SELECTION STYLES
----------------------------------------------------------- */
::selection { background: #83A754; color: #fff; }

section {
  padding: 10px 0;
}

/* End of CSS */
