/* =====================
   CSS RESET & NORMALIZE
   ===================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F6F9F0;
  color: #232323;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====== FONTS ====== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --primary: #23613D;
  --secondary: #84A98C;
  --accent: #F6F9F0;
  --dark: #232323;
  --white: #fff;
  --shadow: 0 2px 8px rgba(35, 97, 61, 0.10);
  --radius: 12px;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--accent);
  color: var(--dark);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 16px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}
p, ul, ol {
  font-size: 1rem; /* 16px */
  margin-bottom: 16px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.feature-grid > div {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 260px;
  flex: 1 1 260px;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 18px rgba(35,97,61,0.12);
  transform: translateY(-4px) scale(1.015);
}

.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;
  padding: 20px 24px 20px 30px;
  background: var(--accent);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  margin-bottom: 20px;
  max-width: 540px;
}
.testimonial-card p {
  color: var(--dark);
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card cite {
  font-size: 0.97rem;
  color: var(--primary);
  font-weight: 600;
  font-style: normal;
  margin-left: 0;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(35, 97, 61, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  position: relative;
}
header img {
  height: 48px;
  margin-right: 28px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
}

.cta-btn {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 40px;
  padding: 11px 30px;
  margin-left: 24px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(35, 97, 61, 0.09);
  letter-spacing: 0.02em;
  position: relative;
  transition: background 0.15s, transform 0.2s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px) scale(1.032);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  padding: 8px 12px;
  border-radius: 8px;
  display: none;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--white);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 0 22px rgba(35,97,61,0.10);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.77,.25,.3,.93);
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  width: 100vw;
  min-height: 100vh;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  padding: 12px 10px;
  align-self: flex-end;
  margin-top: 28px;
  margin-bottom: 24px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.11rem;
  letter-spacing: 0.02em;
  padding: 13px 12px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.16s, color 0.16s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* ========== FOOTER ========== */
footer {
  background: var(--white);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -3px 12px rgba(35,97,61,0.08);
  padding: 36px 0 20px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 0 20px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-menu a {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  transition: color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  font-size: 0.99rem;
  color: var(--dark);
}

/* ========== BUTTONS ========== */
button,
input[type="submit"],
input[type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 26px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(35,97,61,0.12);
  transition: background 0.17s, transform 0.18s;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: var(--secondary);
  transform: translateY(-2px) scale(1.02);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  box-shadow: 0 -2px 16px rgba(35, 97, 61, 0.09);
  border-top: 2.5px solid var(--secondary);
  z-index: 1400;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  animation: fadeInSlideUp 0.77s cubic-bezier(.58,0,.17,.99);
}
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-banner p {
  color: var(--dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner button,
.cookie-banner .cookie-action-btn {
  min-width: 120px;
  border-radius: 6px;
  padding: 9px 22px;
  font-size: 1rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-banner .cookie-action-btn.reject {
  background: #cb4444;
}
.cookie-banner .cookie-action-btn.settings {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .cookie-action-btn:hover,
.cookie-banner .cookie-action-btn:focus {
  filter: brightness(1.08);
  background: var(--secondary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,97,61,.23);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.33s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 32px rgba(35, 97, 61, 0.23);
  padding: 36px 26px 28px 28px;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary);
  letter-spacing: 0.015em;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category span {
  font-weight: 500;
  color: var(--dark);
  font-size: 1.04rem;
}
.cookie-modal .cookie-toggle {
  width: 42px; height: 22px;
  border-radius: 16px;
  background: var(--accent);
  border: 1.2px solid var(--secondary);
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
  display: flex;
  align-items: center;
}
.cookie-modal .cookie-toggle[aria-checked='true'] {
  background: var(--secondary);
}
.cookie-modal .cookie-toggle .toggle-knob {
  position: absolute;
  top: 2.5px;
  left: 2px;
  width: 17px; height: 17px;
  border-radius: 100%;
  background: var(--white);
  transition: left 0.17s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.09);
}
.cookie-modal .cookie-toggle[aria-checked='true'] .toggle-knob {
  left: 21px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 20px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--secondary);
  position: absolute;
  top: 15px; right: 18px;
  cursor: pointer;
  border-radius: 8px;
  padding: 4px 10px;
  transition: background 0.11s, color 0.11s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--accent);
  color: var(--primary);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .container {
    max-width: 970px;
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 800px;
  }

  .feature-grid > div {
    min-width: 210px;
    padding: 24px 15px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  header .container {
    flex-direction: row;
    padding: 13px 10px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 12px;
    padding: 8px 18px;
    font-size: 0.99rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    padding: 0 10px;
  }
  .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .section, section {
    margin-bottom: 36px;
    padding: 24px 7px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .feature-grid > div {
    min-width: 80vw;
    width: 100%;
  }
  .testimonial-card {
    padding: 18px 10px 18px 18px;
    max-width: 98vw;
    font-size: 0.99rem;
  }
  .content-wrapper, .text-section {
    gap: 10px;
  }
}
@media (max-width: 530px) {
  .mobile-menu {
    padding: 0 13px;
  }
  .cookie-modal {
    max-width: 97vw;
    padding: 18px 6px 13px 7px;
  }
  .cookie-banner {
    padding: 18px 6px 13px 7px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.19rem;
  }
  .feature-grid > div {
    padding: 13px 6px;
    font-size: 0.98rem;
  }
}
/* FLEXBOX ADAPTATION FOR RESPONSIVE TEXT-IMAGE-SECTION */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
/* =================PLAYFUL STRUCTURED GEOMETRIC INFLUENCE================== */
/* Geometric accents - triangle/corner accents for geometric_structured look */
.feature-grid > div::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--secondary) transparent transparent;
  position: absolute;
  top: 0; right: 0;
  border-radius: 0 0 var(--radius) 0;
  z-index: 1;
  opacity: .13;
}
.feature-grid > div {
  position: relative;
}
/* Subtle outlined shapes on cards */
.card, .testimonial-card {
  border: 1.5px solid var(--accent);
  overflow: hidden;
}

/* ========== LIST STYLES ========== */
ul, ol {
  padding-left: 1.15em;
  margin-bottom: 13px;
}
ul li, ol li {
  margin-bottom: 7px;
  position: relative;
  padding-left: 12px;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: var(--secondary);
  border-radius: 2px;
  vertical-align: middle;
  position: absolute;
  left: 0px;
  top: 8px;
}
ol li::before {
  content: counter(li);
  counter-increment: li;
  background: var(--primary);
  color: var(--white);
  border-radius: 3px;
  padding: 0 4px;
  font-size: .89em;
  position: absolute;
  left: 0px;
  top: 4px;
}
ol {
  counter-reset: li;
}

/* ========== FORMS (if present) ========== */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.2px solid var(--secondary);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  background: var(--white);
  outline: none;
  box-shadow: none;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
}

/* ========== DARK TEXT FOR TESTIMONIALS/REVIEWS ========== */
.testimonial-card, .testimonial-card p, .testimonial-card cite {
  color: var(--dark) !important;
  background: var(--accent);
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* ========== VISUAL MICRO-EFFECTS ========== */
a, button, .cta-btn, .main-nav a, .mobile-nav a {
  transition: background 0.17s, color 0.17s, box-shadow 0.25s, transform 0.13s;
}

.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.19s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(35,97,61,0.17);
  transform: translateY(-3px) scale(1.016);
}

/* ========== FOCUS & ACCESSIBILITY ========== */
a:focus, .cta-btn:focus, button:focus, input:focus, .mobile-nav a:focus {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2px;
  z-index: 2;
}

::-webkit-input-placeholder { color: #858585; opacity: 1; }
::-moz-placeholder { color: #858585; opacity: 1; }
:-ms-input-placeholder { color: #858585; opacity: 1; }
::placeholder { color: #858585; opacity: 1; }

/* ========== BRAND PERSONALITY EMPHASIS ========== */
/* Add a semi-bold border-radius and shadowed backgrounds for geometric/modern vibe */
.section, section {
  border-radius: var(--radius);
  box-shadow: 0 1px 12px rgba(35,97,61,0.055);
}

/* Specific for hero sections to add structure */
main > section:first-child {
  background: linear-gradient(90deg, #F6F9F0 80%, #84A98C 100%);
  box-shadow: 0 2px 24px rgba(35,97,61,0.055);
  border-bottom: 3px solid var(--accent);
  margin-bottom: 50px;
}

/* ========== HIGH Z-INDEX FOR OVERLAYS ========== */
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 1400; }
.cookie-modal-overlay { z-index: 1500; }

/* ========== HIDE/SHOW ELEMENTS (UTILITY) ========== */
.hidden { display: none !important; }

/* ========== PRINT SUPPORT ========== */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
  section, .section { box-shadow: none !important; border-radius: 0!important; }
  body { color: #151515; }
}
