/* 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;
}

html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #F5F7FA;
  color: #2a3633;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #f5f7fa;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #20304F;
}

img {
  max-width: 100%;
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}

ol, ul {
  list-style: none;
}
a {
  color: #225947;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:active, a:focus {
  color: #38613e;
  outline: none;
}


/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #20304F;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}
p, li, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2A3633;
  font-size: 1rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #225947;
}


/* --- SPACING AND LAYOUT CONTAINERS --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 8px 0 rgba(34, 52, 40, 0.07);
  position: relative;
  overflow: visible;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f8faf6;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(34,52,40,0.07);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f5f7fa;
  border-radius: 16px;
  padding: 18px 16px;
  margin-bottom: 18px;
}


/* --- NAVIGATION (DESKTOP & MOBILE) --- */
header {
  background: #f8faf6;
  box-shadow: 0 2px 18px 0 rgba(34,52,40,0.06);
  width: 100%;
  z-index: 80;
  padding: 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
header nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #20304F;
  background: none;
  border-radius: 22px;
  padding: 7px 14px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a.active {
  background: #eaf1ea;
  color: #225947;
}
nav img {
  height: 38px;
  margin-right: 10px;
  vertical-align: middle;
}
.cta-btn {
  background: #225947;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 28px;
  padding: 10px 28px;
  border: none;
  box-shadow: 0 1px 12px 0 rgba(68,114,33,0.09);
  margin-left: 10px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  letter-spacing: 0.03em;
  font-size: 1rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: #32805e;
  color: #FFFFFF;
  box-shadow: 0 2px 21px 0 rgba(34,89,71,0.13);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #225947;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 100%;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 120;
  cursor: pointer;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #32805e;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 54, 35, 0.96);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.85,0,0.15,1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 18px 22px 0 0;
  cursor: pointer;
  align-self: flex-end;
  margin: 0 0 12px 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 34px 34px;
  gap: 18px;
}
.mobile-nav a {
  color: #eaf1ea;
  font-size: 1.23rem;
  padding: 14px 0;
  border-bottom: 1px solid #497738;
  width: 100%;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #ADDF8E;
  background: #18352150;
}

/* --- MAIN & CARDS --- */
main {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 38px;
}

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

/* --- TESTIMONIAL CARD --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FCFFF9;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(34,89,71,0.09);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  color: #1f2c15;
  border-left: 5px solid #ADDF8E;
}
.testimonial-card p {
  color: #21372a;
  font-size: 1.08rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.testimonial-card strong {
  color: #225947;
  font-size: 1rem;
  font-weight: 600;
}

/* --- LISTS (for USPs, Services, etc.) --- */
ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.04rem;
  position: relative;
  padding-left: 22px;
}
ul li:before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #497738;
  position: absolute;
  left: 0;
  top: 8px;
  box-shadow: 0 0 0 2px #EFF4EF;
}

/* --- BUTTONS & LINKS --- */
button,
input[type="submit"],
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-weight: 600;
  cursor: pointer;
  border-radius: 22px;
  background: #225947;
  color: #fff;
  box-shadow: 0 1px 9px 0 rgba(68,114,33,0.08);
  padding: 10px 28px;
  font-size: 1rem;
  margin-top: 12px;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, transform 0.16s;
}
button:hover, button:focus, .cta-btn:hover, .cta-btn:focus, input[type="submit"]:hover {
  background: #32805e;
  color: #fff;
  box-shadow: 0 2px 18px 0 rgba(34,89,71,0.14);
  transform: translateY(-2px) scale(1.03);
}


/* --- FOOTER --- */
footer {
  background: #224E36;
  color: #f5f7fa;
  padding: 24px 0;
  width: 100%;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}
footer nav a {
  color: #e3f3e0;
  font-size: 1rem;
  margin: 0 5px;
  padding: 0 7px;
  border-radius: 7px;
}
footer nav a:hover {
  background: #1b372a;
  color: #ADDF8E;
}
footer div {
  font-size: .97rem;
  margin-top: 4px;
}

/* --- ORGANIC/NATURE VISUALS --- */
.section, .card, .testimonial-card, .feature-item {
  border-radius: 18px 25px 22px 16px/18px 21px 25px 19px;
  border: 1.5px solid #eaf1ea;
  box-shadow: 0 4px 18px 0 rgba(34, 89, 71, 0.06);
}

.section:before, .card:before, .testimonial-card:before {
  content: '';
  position: absolute;
  left: -22px;
  top: 18px;
  width: 46px; height: 46px;
  background: rgba(173,223,142,0.10);
  border-radius: 50% 36% 46% 55%/46% 55% 48% 36%;
  z-index: 0;
  filter: blur(3px);
  pointer-events: none;
}
.section:after, .testimonial-card:after {
  content: '';
  position: absolute;
  right: -26px;
  bottom: -12px;
  width: 36px; height: 36px;
  background: rgba(34,89,71,0.08);
  border-radius: 55% 44% 42% 60%/49% 62% 38% 60%;
  z-index: 0;
  pointer-events: none;
}


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: #EEF4EE;
  color: #20304F;
  border-top: 2px solid #225947;
  box-shadow: 0 -3px 14px 0 rgba(34,89,71,0.13);
  padding: 28px 18px 18px 18px;
  z-index: 99990;
  font-size: 1rem;
  transition: transform 0.27s cubic-bezier(0.5,1,0.89,1);
  transform: translateY(0);
  border-radius: 18px 18px 0 0/18px 18px 0 0;
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  flex: 1 1 230px;
  margin-bottom: 0;
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  margin: 0;
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 18px;
}
.cookie-settings-btn {
  background: #fff;
  color: #225947;
  border: 1.2px solid #225947;
}
.cookie-settings-btn:hover {
  background: #f6faf3;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #FCFFF9;
  color: #1f2c15;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(34,89,71,0.19);
  z-index: 999999;
  padding: 38px 26px 30px 26px;
  min-width: 320px;
  min-height: 180px;
  transition: opacity .27s, transform .21s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.98);
}
.cookie-modal h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-modal input[type='checkbox'] {
  width: 18px; height: 18px;
  accent-color: #225947;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-actions button {
  padding: 9px 19px;
  font-size: 1rem;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #1e3527;
  cursor: pointer;
  padding: 0;
}
.cookie-modal .cookie-close:hover {
  color: #32805e;
}


/* --- FORMS (contact etc.) --- */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 1.2px solid #ADDF8E;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2a3633;
  background: #F5F7FA;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: border 0.17s, background 0.17s;
}
input:focus, textarea:focus {
  outline: none;
  border: 1.4px solid #225947;
  background: #fafffa;
}


/* --- ORGANIC MICRO-ANIMATIONS --- */
.card, .testimonial-card, .section, .cta-btn, button {
  transition: box-shadow 0.22s, background 0.18s, color 0.19s, transform 0.16s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 28px 0 rgba(34, 89, 71, 0.13);
  transform: translateY(-2px) scale(1.01);
  background: #F7FBF4;
}
.feature-item:hover {
  background: #eaf1ea;
}

/* --- ORGANIC SHAPES DECORATION (mobile hide) --- */
@media (max-width: 600px) {
  .section:before,
  .section:after,
  .testimonial-card:before,
  .testimonial-card:after,
  .card:before { display: none; }
}


/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1100px) {
  .container { max-width: 970px; }
}
@media (max-width: 960px) {
  .container { max-width: 90vw; }
}
@media (max-width: 820px) {
  .container { max-width: 98vw; }
  nav img { height: 34px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  .section { padding: 22px 8px; margin-bottom: 38px; }
  .feature-item { padding: 15px 8px; }
  .testimonial-card { flex-direction: column; gap: 10px; }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section { border-radius: 14px; }
  .card, .testimonial-card, .feature-item { border-radius: 12px; }
}
@media (max-width: 660px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .cta-btn { padding: 10px 16px; font-size: 1rem; }
  .mobile-menu {
    padding: 0;
  }
  .mobile-nav { padding: 22px 14px; gap: 10px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1.03rem; }
  .testimonial-card p, .testimonial-card strong { font-size: .97rem; }
  .card { min-width: 160px; padding: 13px 9px; }
  .feature-item { padding: 10px 6px; }
  .cookie-banner { flex-direction: column; gap: 10px; padding: 16px 7px 8px 7px; }
  .cookie-modal { padding: 24px 10px 18px 10px; min-width: 90vw; }
  .mobile-nav a { font-size: 1rem; }
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px dash #8CA6DB !important;
  outline-offset: 2px;
}


/* --- BRAND/NATURE COLOR UTILITIES --- */
.bg-primary {
  background: #225947 !important;
  color: #fff !important;
}
.bg-secondary {
  background: #8CA6DB!important;
  color: #fff !important;
}
.bg-accent {
  background: #ADDF8E!important;
  color: #20304F !important;
}
.text-accent {
  color: #225947 !important;
}

/* --- MISC UTILITIES --- */
.hide {
  display: none !important;
}
.flex {
  display: flex !important;
}
.align-center {
  align-items: center !important;
}
.justify-center {
  justify-content: center !important;
}
.gap-20 {
  gap: 20px !important;
}


/* --- END --- */
