/* === 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;
}
*, *:before, *:after { box-sizing: inherit; }
html { line-height: 1.15; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; background: #FAFBF9; }
article, aside, footer, header, nav, section, main { display: block; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
:focus { outline: 2px solid #19a48f; outline-offset: 2px; }

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

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #223622;
  background-color: #FAFBF9;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #113357;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; }

p, ul, ol { margin-bottom: 1em; }
strong { font-weight: 600; color: #113357; }
em { font-style: italic; }

/* --- Links and CTAs --- */
a, .quick-links a {
  color: #19a48f;
  transition: color 0.20s;
}
a:hover, .quick-links a:hover, .quick-links a:focus {
  color: #16362a; text-decoration: underline;
}

.cta-button {
  background: #19a48f;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 14px 38px;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(25,164,143, 0.13);
  transition: background .2s, box-shadow .2s, transform .1s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #146452;
  color: #f3f6f9;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(25,164,143,0.18);
}

/* --- Containers & Spacing --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 32px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: #fff;
  border-radius: 32px 32px 60px 12px / 40px 40px 30px 70px;
  box-shadow: 0 4px 38px rgba(34,54,34,0.08);
  padding: 32px 30px 32px 32px;
  margin-bottom: 20px;
}

/* --- Card Layouts --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 26px 38px 18px 38px / 44px 18px 44px 22px;
  box-shadow: 0 4px 24px rgba(17,51,87,0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px rgba(34,54,34,0.13);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* --- Feature Grids --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 32px 24px 32px 38px / 24px 44px 38px 28px;
  box-shadow: 0 2px 19px rgba(34,54,34,0.07);
  padding: 28px 24px 22px 24px;
  min-width: 240px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .13s;
}
.feature-item img {
  width: 44px; height: 44px; margin-bottom: 6px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 36px rgba(25,164,143,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* --- Testimonials --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F6F9;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(17,51,87,0.08);
  color: #17381c;
  font-size: 1.08rem;
  margin-bottom: 20px;
  transition: box-shadow .18s;
  position: relative;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1.08rem;
  color: #113357;
  margin-right: 12px;
}
.testimonial-card span {
  color: #19a48f;
  font-weight: 600;
  margin-left: auto;
  font-size: 1rem;
}
.testimonial-card:before {
  content: '\201C';
  font-size: 3rem;
  color: #d8e1d9;
  position: absolute;
  left: 6px; top: 8px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px rgba(34,54,34,0.14);
}

/* --- Lists --- */
ul, ol {
  padding-left: 18px;
  margin-bottom: 16px;
}
ul li, ol li {
  padding-left: 2px;
  margin-bottom: 7px;
  line-height: 1.7;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: #19a48f;
  border-radius: 2px 50% 50% 50%;
  margin-right: 9px;
  transform: translateY(-1.5px);
}
ol li { counter-increment: steps; }
ol {
  counter-reset: steps;
}
ol li:before {
  content: counter(steps) '.';
  color: #19a48f;
  font-weight: 600;
  margin-right: 7px;
}

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

.leadership-team {
  background: #e9efe7;
  border-radius: 24px;
  padding: 16px 22px;
  margin: 8px 0 10px 0;
}
.leadership-team ul li {
  margin-bottom: 6px;
}

/* --- Header / Nav --- */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(17,51,87,0.05);
  border-bottom-left-radius: 34px;
  border-bottom-right-radius: 34px;
  padding-bottom: 5px;
  position:sticky; top:0; z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0 10px 0;
  position: relative;
}
header nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav ul li a {
  position: relative;
  font-family: 'Montserrat', Arial;
  font-size: 1.02rem;
  font-weight: 600;
  color: #113357;
  border-radius: 16px;
  transition: background .13s, color .18s;
  padding: 7px 15px;
}
header nav ul li a[aria-current="page"],
header nav ul li a.active {
  background: #eaf5ea;
  color: #19a48f;
}
header nav ul li a:hover, header nav ul li a:focus {
  background: #19a48f; color: #fff;
}

header nav a img {
  height: 48px;
  margin-right: 12px;
}

/* --- Hide menu for mobile --- */
@media (max-width: 1023px) {
  header nav ul { display: none; }
  header nav .cta-button { display: none; }
}

/* --- Hamburger / Mobile Menu --- */
.mobile-menu-toggle {
  background: #17b481;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 16px;
  padding: 8px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px rgba(25,164,143,0.15);
  transition: background .18s, box-shadow .18s, transform .13s;
  margin-left: auto;
  z-index: 3000;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #146452;
  color: #e8ffef;
  transform: scale(1.045);
}
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #113357ee;
  color: #fff;
  z-index: 2020;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transition: left 0.3s cubic-bezier(0.7,0.12, 0.25,1.0);
  pointer-events: none;
}
.mobile-menu.open { left: 0; pointer-events: auto; }
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  margin: 20px 22px 10px 0;
  cursor: pointer;
  z-index: 2040;
  transition: color .18s;
  padding: 8px 10px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #19a48f; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 30px 0 0 0;
  align-items: flex-start;
  gap: 2px;
}
.mobile-nav a {
  padding: 20px 44px;
  font-family: 'Montserrat', Arial;
  font-size: 1.27rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #2d4c6f34;
  width: 100%;
  transition: background .13s, color .18s;
  display: block;
}
.mobile-nav a[aria-current="page"], .mobile-nav a.active {
  background: #19a48f;
  color: #fff;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #146452;
  color: #e8ffef;
}

/* --- Main content --- */
main { min-height: 62vh; }

/* --- Address + Contact Info --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 11px 0;
  font-size: 1rem;
  color: #16362a;
  font-family: 'Open Sans', Arial;
}
.contact-info span, .contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info img {
  width: 17px;
  height: 17px;
  margin-right: 2px;
}

/* --- Footer --- */
footer {
  background: #e9efe7;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding-top: 34px;
  padding-bottom: 22px;
  margin-top: 60px;
}
footer .container {
  max-width: 1140px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 22px;
  align-items: center;
  margin: 12px 0 8px 0;
}
footer nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1e4d37;
  border-radius: 13px;
  padding: 6px 12px;
  transition: background .13s, color .13s;
}
footer nav a:hover, footer nav a:focus {
  background: #113357;
  color: #fff;
}

footer a img {
  height: 39px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: #223622;
  color: #fff;
  z-index: 4000;
  padding: 22px 8px 15px 8px;
  box-shadow: 0 -3px 36px rgba(20,52,32, 0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: 'Open Sans', Arial;
  font-size: 1rem;
  transition: transform .33s cubic-bezier(0.65,0,0.45,1);
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  color: #fff;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 11px;
  margin-left: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 16px;
  padding: 8px 20px;
  margin: 0;
  cursor: pointer;
  transition: background .15s, color .12s;
}
.cookie-btn.accept {
  background: #19a48f;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #146452; }
.cookie-btn.reject {
  background: #fff;
  color: #223622;
  border: 1.5px solid #19a48f;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #19a48f; color: #fff; }
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {background: #16362a; color: #19a48f; border-color: #19a48f;}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,54,34,0.36);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s cubic-bezier(.65,0,.47,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #F3F6F9;
  border-radius: 23px;
  padding: 38px 32px 28px 32px;
  min-width: 300px;
  max-width: 98vw;
  min-height: 210px;
  box-shadow: 0 12px 52px rgba(17,51,87,0.09);
  color: #123e2e;
  font-family: 'Open Sans', Arial;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #113357;
  font-family: 'Montserrat';
  font-size: 1.27rem;
  margin-bottom: 6px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px; top: 18px;
  background: transparent;
  color: #19a48f;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 0 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  font-weight: 500;
  color: #123e2e;
}
.cookie-category input[type="checkbox"] {
  accent-color: #19a48f;
  width: 20px; height: 20px;
  margin-right: 2px;
}
.cookie-category.essential label { font-weight: bold; color: #146452; }
.cookie-category.essential input[type="checkbox"] {
  pointer-events: none;
  opacity: 0.55;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 18px;
}

/* === Utility Classes === */
.mt-0 { margin-top:0!important; }
.mb-0 { margin-bottom:0!important; }
.mt-1 { margin-top:8px!important; }
.mt-2 { margin-top:16px!important; }
.mt-3 { margin-top:24px!important; }
.mb-1 { margin-bottom:8px!important; }
.mb-2 { margin-bottom:16px!important; }
.mb-3 { margin-bottom:24px!important; }

/* --- Responsive Design: Mobile First --- */
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .section { margin-bottom: 34px; padding: 24px 6px; }
  .text-section, .card, .feature-item, .cookie-modal-content {
    padding-left: 12px; padding-right: 12px;
    border-radius: 20px 20px 34px 20px/32px 24px 18px 42px;
  }
  .content-wrapper, .card-container, .content-grid, .feature-grid, footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature-item {
    min-width: 0;
    width: 100%;
    padding: 20px 10px;
  }
  .testimonial-card { flex-direction: column; gap: 14px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  footer .content-wrapper {
    align-items: flex-start;
    gap: 11px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .section, .text-section, .card, .feature-item { font-size: 1rem; }
  .cookie-banner { font-size: 0.98rem; flex-direction: column; gap: 6px; }
  .cookie-buttons { flex-direction: column; gap: 7px; margin-left:0; }
  .cookie-modal-content { padding: 15px 6px 17px 8px; }
}

/* --- Animate cookie, mobile menu (enter/exit) --- */
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu,
  .mobile-menu.open { transition: left 0.38s cubic-bezier(0.7,0.12, 0.25,1.0); }
  .cookie-banner,
  .cookie-banner.hidden { transition: transform .33s cubic-bezier(0.65,0,0.45,1); }
  .cookie-modal, .cookie-modal.open { transition: opacity .25s cubic-bezier(.65,0,.47,1); }
}

/* --- Miscellaneous --- */
::-webkit-scrollbar { width: 9px; background: #eaf2ed; }
::-webkit-scrollbar-thumb { background: #bdd5be; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #19a48f; }

/* Visual organic background textures (optional light leaf overlay) */
body:after {
  content: "";
  position:fixed; z-index:0; left:0;top:0; width:100vw; height:100vh;
  pointer-events:none;
  background-image: url('assets/decor/leaf-bg-light.svg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 400px auto;
  opacity: 0.035;
}

/* === END CSS === */
