/*===============================
  CSS RESET & BASE STYLES
===============================*/
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 { line-height: 1.15; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: #fffbe9;
  color: #202820;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
a { color: #24613f; text-decoration: none; transition: color 0.2s; }
ahover { color: #60a168; }
::selection { background: #60a168; color: #fffbe9; }

/* Artistic Display Font */
h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
}

h1 { font-size: 2.4rem; margin-bottom: 20px; color: #24613f; }
h2 { font-size: 1.9rem; margin-bottom: 18px; color: #24613f; }
h3 { font-size: 1.4rem; margin-bottom: 8px; color: #469b60; font-weight: 700; }
h4, h5, h6 { color: #24613f; }

p, li, span, label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
}
strong { font-weight: 700; }

ul, ol { padding-left: 20px; margin-bottom: 16px; }
ul { list-style: disc inside; }
li { margin-bottom: 6px; }

button, .cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 11px 30px;
  background: #60a168;
  color: #fff;
  border: none;
  border-radius: 40px 8px 40px 8px;
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.23s cubic-bezier(.5,1.5,.5,1); 
  box-shadow: 0 3px 22px 0 rgba(30,30,30,0.09);
  position: relative;
  z-index: 2;
  outline: none;
  margin-top: 12px;
}
button.cta.primary, a.cta.primary {
  background: #24613f;
  color: #fffbe9;
  box-shadow: 0 4px 36px 0 rgba(60,100,45,0.14);
  border-radius: 16px 32px 16px 32px;
}
a.cta.primary:hover, button.cta.primary:hover {
  background: #469b60;
  color: #fffbe9;
  box-shadow: 0 5px 42px 0 rgba(45,100,60,0.16);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
a.cta, button.cta {
  display: inline-block;
  text-align: center;
}

/* Hover Styles for Interactive Elements */
nav a:hover, .mobile-nav a:hover {
  color: #60a168;
  text-decoration: underline;
  background-color: #f0fbe0;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}

/*===============================
  CONTAINER & FLEX LAYOUTS
===============================*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,251,233,0.953);
  border-radius: 40px 12px 40px 12px;
  box-shadow: 0 3px 14px 0 rgba(60, 110, 65, 0.08);
  position: relative;
}

/* Flex layouts */
.feature-grid, .card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 4px 20px 0 rgba(60,110,65,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 20px 22px 20px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 38px 0 rgba(60,110,65,0.18);
  transform: translateY(-3px) scale(1.04) rotate(-2.5deg);
}
.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: 12px;
  background: #f9fbf2;
  color: #212a21;
  border: 1.5px solid #e5eddb;
  border-radius: 30px 10px 30px 10px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  box-shadow: 0 2px 16px 0 rgba(36,97,63,0.06);
  position: relative;
  min-width: 220px;
  max-width: 430px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(36,97,63,0.16);
  background: #fffbe9;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 1em; color: #24613f; margin-top: 4px; margin-left: 4px; letter-spacing: 0.01em; }

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

.text-section {
  background: rgba(255,246,219,0.73);
  border-left: 6px solid #60a168;
  padding: 20px 24px;
  border-radius: 16px 40px 16px 40px;
  margin-bottom: 22px;
}

/*===============================
  HEADER & NAVIGATION
===============================*/
header {
  background: #f6fcf3;
  box-shadow: 0 1px 18px 0 rgba(36,97,63,0.09);
  position: sticky;
  top: 0;
  z-index: 1002;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.logo { display: flex; align-items: center; height: 52px; }
.logo img { height: 48px; width: auto; }
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #24613f;
  padding: 7px 13px;
  border-radius: 10px;
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
}
a.cta.primary { margin-left: 26px; }

/* Burger menu */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #60a168;
  color: #fffbe9;
  font-size: 2rem;
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(36,97,63,0.09);
  margin-left: 12px;
  cursor: pointer;
  z-index: 1102;
  transition: background 0.15s;
}
.mobile-menu-toggle:hover { background: #24613f; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,251,233,0.98);
  box-shadow: 0 3px 36px 0 rgba(36, 97, 63, 0.25);
  z-index: 2003;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(105vw);
  transition: transform 0.35s cubic-bezier(.44,1.6,.32,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #24613f;
  color: #fffbe9;
  font-size: 2.3rem;
  border: none;
  border-radius: 13px;
  width: 46px; height: 46px;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  z-index: 2100;
  box-shadow: 0 2px 10px 0 rgba(30,80,50,0.10);
  transition: background 0.15s;
}
.mobile-menu-close:hover { background: #60a168; }
.mobile-nav {
  width: 100%;
  margin: 34px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #24613f;
  padding: 16px 0;
  font-weight: 700;
  width: 100%;
  display: block;
  border-bottom: 1px solid #e0e6d7;
  transition: color 0.14s, background 0.14s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: #e5eddb; color: #469b60; padding-left: 10px; }

/* Hide mobile menu on desktop */
@media (min-width: 1000px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* Hide normal nav on mobile */
@media (max-width: 999px) {
  nav {
    display: none !important;
  }
  a.cta.primary {
    display: none !important;
  }
}

/*===============================
  HERO & CREATIVE LAYOUTS
===============================*/
.tagline {
  background: #60a168;
  color: #fffbe9;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  padding: 6px 18px 7px 20px;
  border-radius: 14px 25px 14px 25px;
  margin-bottom: 16px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

/*===============================
  UNIQUE/ARTISTIC ELEMENTS
===============================*/
.feature-grid li, .feature-item {
  background: #f6fcf3;
  padding: 24px 22px;
  border-radius: 34px 12px 34px 12px;
  box-shadow: 0 3px 20px rgba(60,110,65,0.08);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
  border: 1.5px solid #e0e6d7;
  transition: box-shadow 0.17s, background 0.2s;
}
.feature-grid li:hover {
  background: #fffbe9;
  box-shadow: 0 9px 38px 0 rgba(60,110,65,0.11);
  transform: scale(1.035) rotate(-2deg);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}

/* .card-container: MANDATORY flex-wrap/gap*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffbe9;
  border-left: 8px solid #60a168;
  margin-bottom: 20px;
}

.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;
}

/*===============================
  FOOTER
===============================*/
footer {
  background: #24613f;
  color: #fffbe9;
  padding: 44px 0 18px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 9px;
}
footer nav a {
  color: #fffbe9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
footer nav a:hover {
  background: #60a168;
  color: #fffbe9;
}
footer p { color: #dbe7d7; font-size: 0.98rem; }

/*===============================
  COOKIE CONSENT BANNER
===============================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #24613f;
  color: #fffbe9;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 26px 22px 22px 24px;
  z-index: 3000;
  box-shadow: 0 -2px 22px 0 rgba(36,97,63,0.07);
  border-radius: 26px 26px 0 0;
  transition: transform 0.35s cubic-bezier(.42,1.2,.4,1);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-text {
  flex: 1 0 180px;
  font-size: 1rem;
  padding-right: 7px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 10px 22px 10px 22px;
  background: #60a168;
  color: #fffbe9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button.settings { background: #fffbe9; color: #24613f; border: 1.7px solid #24613f; }
.cookie-banner button.settings:hover { background: #60a168; color: #fffbe9; }
.cookie-banner button:hover { background: #469b60; color: #fffbe9; }

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,97,63,0.24);
  z-index: 3500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.visible {
  opacity: 1; pointer-events: auto;
}
.cookie-modal-content {
  background: #fffbe9;
  color: #24613f;
  border-radius: 20px 44px 20px 44px;
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 340px; max-width: 90vw;
  box-shadow: 0 7px 50px rgba(36,97,63,0.21);
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 7px;
  font-size: 1.1rem;
  color: #24613f;
}
.cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-cat { display: flex; align-items: center; gap: 16px; }
.cookie-cat label { font-weight: bold; min-width: 100px; }
.cookie-cat input[type=checkbox] {
  width: 18px; height: 18px;
  accent-color: #60a168;
}
.cookie-modal-content .close {
  position: absolute; top: 12px; right: 16px;
  background: #60a168;
  color: #fffbe9;
  border: none; border-radius: 13px;
  width: 34px; height: 34px; font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-content .close:hover { background: #24613f; }

/*===============================
  RESPONSIVE DESIGN
===============================*/
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 26px 9px; margin-bottom: 36px; }
  .feature-grid, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid li, .feature-item, .testimonial-card, .card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-logo img { height: 32px; }
}
@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 7px; }
  .hero-visual { gap: 13px; }
  .section { padding: 17px 3px; margin-bottom: 24px; }
}
@media (max-width: 420px) {
  h1 { font-size: 1.17rem; }
  h2 { font-size: 1.0rem; }
  .footer-logo img { height: 25px; }
  .cookie-modal-content { padding: 12px 6px 18px 8px; min-width: 0; }
}

/*===============================
  COLORFUL/ARTISTIC PALETTES
===============================*/
body, .section {
  /* artistic paint daubs as background pattern */
  background-image: url('data:image/svg+xml;utf8,<svg width="360" height="120" viewBox="0 0 360 120" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="80" cy="50" rx="32" ry="13" fill="%23fffbe9" fill-opacity="0.13"/><ellipse cx="230" cy="60" rx="59" ry="19" fill="%2360a168" fill-opacity="0.07"/><ellipse cx="270" cy="100" rx="25" ry="10" fill="%2324613f" fill-opacity="0.10"/></svg>');
  background-repeat: repeat;
  background-size: 390px 140px;
}

/* Subtle drop shadow for images */
img, svg {
  filter: drop-shadow(0 1px 3px rgba(80,130,90,0.07));
}

/* Decorative Brushstroke Underline effect */
h1::after, h2::after {
  content: '';
  display: block;
  width: 68px;
  height: 8px;
  background: #60a168;
  border-radius: 8px;
  margin-top: 4px;
  margin-bottom: 2px;
  opacity: 0.38;
}

/*===============================
  FORM ELEMENTS
===============================*/
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  border-radius: 16px 4px 16px 4px;
  border: 1.5px solid #60a168;
  padding: 10px 15px;
  margin-bottom: 14px;
  outline: none;
  background: #f6fcf3;
  transition: border 0.16s, background 0.19s;
}
input:focus, textarea:focus {
  border-color: #24613f;
  background: #fffbe9;
}
label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; margin-bottom: 3px; display: block; }

/*===============================
  MISC & MICRO-INTERACTIONS
===============================*/
.card, .feature-grid li, .testimonial-card, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.23s cubic-bezier(.5,1.6,.5,1), background 0.2s;
}
.cta:focus, .cta.primary:focus,
button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #60a168;
  outline-offset: 1px;
}

/* Link focus style */
a:focus { text-decoration: underline dashed #24613f 2px; outline: none; }

/*===============================
  TYPOGRAPHY SCALE
===============================*/
html { font-size: 16px; }
@media (max-width: 900px) { html { font-size: 15px; } }
@media (max-width: 600px) { html { font-size: 14px; } }

/*===============================
  PRINT-FRIENDLY
===============================*/
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #222; }
  .section, .feature-grid li, .testimonial-card, .card { box-shadow: none !important; background: #fff !important; border: none !important; }
}
