/* --------------------------------------------------- */
/* CSS RESET & BASE FONT STACKS                        */
/* --------------------------------------------------- */
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.7;
  background: #f7f8f5;
  color: #192d23;
  font-family: 'Roboto', Georgia, Times, 'Times New Roman', serif;
  font-size: 16px;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  height: auto;
}
a {
  color: #237f52;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #174036;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* --------------------------------------------------- */
/* TYPOGRAPHY                                          */
/* --------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: #174036;
  font-family: 'Montserrat', Georgia, Times, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.13;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.3rem;
  color: #237f52;
  font-style: italic;
}
strong, b {
  font-weight: 600;
  color: #174036;
}

/* Utility serif for classic/elegant highlights */
.serif {
  font-family: 'Georgia', 'Times New Roman', Times, serif !important;
}

/* --------------------------------------------------- */
/* LAYOUT & CONTAINERS                                 */
/* --------------------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* --------------------------------------------------- */
/* HEADER & NAVIGATION                                 */
/* --------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #dee4dc;
  padding: 0;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  min-height: 80px;
}
header img {
  height: 50px;
  width: auto;
  display: block;
  margin-right: 24px;
}

nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1rem;
  color: #237f52;
  padding: 6px 0 8px 0;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: #174036;
  border-bottom: 2px solid #237f52;
}

.cta-button {
  background: #237f52;
  color: #fff;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  margin-left: 28px;
  box-shadow: 0 2px 10px rgba(35, 127, 82, 0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #174036;
  color: #e2eed6;
  box-shadow: 0 4px 16px rgba(23, 64, 54, 0.12);
  transform: translateY(-2px) scale(1.025);
}

/* --------------------------------------------------- */
/* MOBILE NAVIGATION                                   */
/* --------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 30;
  background: #e2eed6;
  color: #174036;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(35, 127, 82, 0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #bee2c7;
  color: #237f52;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 100vw;
  z-index: 99;
  transition: transform 0.4s cubic-bezier(.74,0,.24,1), left 0s 0.4s;
  box-shadow: -4px 0 32px rgba(23, 64, 54, 0.28);
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.74,0,.24,1);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: #237f52;
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  z-index: 101;
  padding: 0;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #174036;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 110px 0 0 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', serif;
  color: #174036;
  text-decoration: none;
  padding: 12px 0;
  border: none;
  border-radius: 2px;
  background: none;
  transition: background 0.18s, color 0.18s;
  width: max-content;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e2eed6;
  color: #237f52;
}

@media (max-width: 1050px) {
  header .container {
    flex-direction: row;
    gap: 18px;
    min-height: 62px;
  }
  nav {
    gap: 12px;
  }
  .cta-button {
    margin-left: 10px;
    padding: 9px 20px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
}
@media (max-width: 830px) {
  header img {
    height: 38px;
  }
  header .container {
    min-height: 56px;
  }
  nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    padding: 0 0 0 0;
  }
  .mobile-nav {
    gap: 20px;
    padding: 108px 0 0 16px;
  }
  .mobile-menu-close {
    font-size: 2rem;
    top: 15px;
    right: 17px;
  }
}

/* --------------------------------------------------- */
/* SECTIONS + FLEX LAYOUTS                             */
/* --------------------------------------------------- */
.section, section {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  padding: 40px 0;
}

/* Classic Section visual for .section */
.section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(35, 127, 82, 0.065);
}

/******* Feature Grid ******/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 12px;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 24px;
  }
}
@media (max-width: 650px) {
  .feature-grid {
    gap: 16px;
    flex-direction: column;
  }
}

/******* Feature Item ******/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #e2eed6;
  border-radius: 10px;
  box-shadow: 0 2px 9px rgba(23, 64, 54, 0.08);
  padding: 28px 25px 19px 25px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.22s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 22px rgba(35,127,82,0.12);
  transform: translateY(-2px) scale(1.022);
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.feature-item h3, .feature-item h2 {
  font-size: 1.21rem;
  color: #174036;
  margin: 0;
}
.feature-item p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #1c341c;
}

/******* Card Container ******/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(43, 84, 73, .11);
  padding: 28px 30px 22px 30px;
  flex: 1 1 350px;
  min-width: 260px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 29px rgba(23,64,54,0.14);
  transform: translateY(-1.5px) scale(1.012);
}

/* Content Grid -- rows of cards */
.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;
    gap: 20px;
  }
}

/* --------------------------------------------------- */
/* HERO/CTA/BANNERS                                    */
/* --------------------------------------------------- */
.hero-section {
  background: linear-gradient(88deg, #e2eed6 0%, #eaf3e2 100%);
  padding: 60px 0 45px 0;
  border-bottom: 1px solid #dbe6d3;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 670px;
  padding: 30px 0 30px 0;
  gap: 18px;
}
.hero-section h1 {
  font-size: 2.7rem;
  color: #237f52;
  margin-bottom: 10px;
  font-family: 'Montserrat', serif;
  letter-spacing: 0.015em;
}
.hero-section .cta-button {
  margin-left: 0;
}

.cta-banner {
  background: #237f52;
  background: linear-gradient(97deg,#237f52 70%, #174036 100%);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(35,127,82,0.08);
  padding: 60px 0;
  margin-bottom: 54px;
}
.cta-banner .content-wrapper h1,
.cta-banner .content-wrapper h2 {
  color: #fff;
}
.cta-banner p {
  color: #eaf3e2;
  font-size: 1.12rem;
}
.cta-banner .cta-button {
  background: #eaf3e2;
  color: #237f52;
  font-size: 1rem;
  box-shadow: none;
}
.cta-banner .cta-button:hover, .cta-banner .cta-button:focus {
  background: #bee2c7;
  color: #174036;
}

@media (max-width: 650px) {
  .hero-section, .cta-banner {
    padding-left: 8px;
    padding-right: 8px;
  }
  .cta-banner {
    padding: 32px 0;
  }
}

/* --------------------------------------------------- */
/* TEXT AND CARD SECTIONS                              */
/* --------------------------------------------------- */
.text-section {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(35,127,82,0.07);
  padding: 32px 32px 22px 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width:600px) {
  .text-section {
    padding: 20px 8px 14px 8px;
  }
}

/******** Blog featured highlight *******/
.blog-featured {
  background: #e2eed6;
  border-radius: 7px;
  padding: 24px 18px 16px 18px;
  color: #174036;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(23,64,54,0.10);
}
.blog-featured h2 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

/********* MAP SNIPPET ********/ 
.map-snippet {
  background: #e2eed6;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(35,127,82,0.08);
  padding: 13px 8px;
  display: flex;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 0;
  min-height: 80px;
}
.map-snippet img {
  width: 62px;
  height: 62px;
  margin: 0 auto;
}

/********* CONTACT INFO ********/ 
.contact-info {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #174036;
  font-family: 'Montserrat', serif;
}
.contact-info img {
  width: 22px;
  height: 22px;
  margin-right: 2px;
}

/********* FAQ Section ********/ 
.faq-list {
  list-style-type: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.faq-list li strong {
  display: block;
  margin-bottom: 2px;
  color: #1c341c;
}
.faq-list li {
  background: #e2eed6;
  border-radius: 5px;
  padding: 12px 14px;
  box-shadow: 0 1px 6px rgba(35,127,82,0.05);
}
/*** Team ********/
.team-members-list {
  list-style: disc inside;
  margin-left: 12px;
}
.team-members-list li {
  font-size: 1rem;
  color: #193e2a;
  margin-bottom: 7px;
}
.team-members-list strong {
  color: #237f52;
  font-family: 'Montserrat', serif;
}

/* --------------------------------------------------- */
/* TESTIMONIAL CARD                                   */
/* --------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 2px 12px rgba(35, 127, 82, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 650px;
  color: #174036;
  font-size: 1rem;
  position: relative;
  border-left: 6px solid #237f52;
  transition: box-shadow 0.17s, transform 0.18s;
  z-index: 1;
}
.testimonial-card p {
  color: #174036;
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}
.testimonial-card span {
  color: #237f52;
  font-family: 'Montserrat', serif;
  font-size: 0.98rem;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 22px rgba(35,127,82,0.14);
  transform: translateY(-1.5px) scale(1.015);
}

/* --------------------------------------------------- */
/* FOOTER                                             */
/* --------------------------------------------------- */
footer {
  background: #1b352a;
  color: #eaf3e2;
  padding: 36px 0 24px 0;
  border-top: 1px solid #e2eed6;
  box-shadow: 0 -2px 10px rgba(23,64,54,0.07);
}
footer .container {
  gap: 20px;
}
.footer-navigation {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-navigation a {
  color: #bee2c7;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.18s, border-bottom 0.17s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #eaf3e2;
  border-bottom: 2px solid #bee2c7;
}
.footer-contact {
  color: #c5dac2;
  font-size: 0.99rem;
  letter-spacing: 0.01em;
  font-family: 'Roboto', serif;
  margin-top: 6px;
}
/* --------------------------------------------------- */
/* COOKIE CONSENT BANNER & MODAL                       */
/* --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #174036;
  box-shadow: 0 -4px 24px rgba(23,64,54,0.14);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 21px 23px 21px;
  gap: 28px;
  font-size: 1rem;
  font-family: 'Roboto', serif;
  animation: slideUp 0.5s cubic-bezier(.73,0,.2,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  max-width: 440px;
  color: #237f52;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 30px;
}
.cookie-banner button {
  padding: 9px 22px;
  border: none;
  background: #e2eed6;
  color: #174036;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(35,127,82,0.09);
  transition: background 0.14s, color 0.12s;
}
.cookie-banner button.accept {
  background: #237f52;
  color: #fff;
}
.cookie-banner button.reject {
  background: #fff;
  color: #237f52;
  border: 1.5px solid #237f52;
}
.cookie-banner button.settings {
  background: #e2eed6;
  color: #174036;
}
.cookie-banner button:hover, 
.cookie-banner button:focus {
  filter: brightness(0.97) contrast(1.08);
  background: #bee2c7;
}
.cookie-modal {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,64,54, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.27s cubic-bezier(.73,0,.21,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 36px rgba(35,127,82,0.32);
  padding: 38px 30px 28px 30px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  font-family: 'Roboto', serif;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', serif;
  font-size: 1.18rem;
  color: #237f52;
  margin-bottom: 0;
}
.cookie-modal-content label {
  font-size: 1rem;
  color: #174036;
  margin-bottom: 8px;
  font-family: 'Roboto', serif;
}
.cookie-modal-content .cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}
.cookie-modal-content .actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.cookie-modal-content .close-modal-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #237f52;
}
.cookie-modal-content .close-modal-btn:hover, 
.cookie-modal-content .close-modal-btn:focus {
  color: #174036;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: #237f52;
  width: 18px;
  height: 18px;
  margin: 0;
}
.cookie-toggle input[type="checkbox"][disabled] {
  filter: grayscale(0.8);
}
.cookie-toggle .desc {
  color: #686868;
  font-size: 0.97rem;
  margin-left: 8px;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
    text-align: left;
    padding: 17px 7px 16px 7px;
  }
  .cookie-banner .cookie-btns {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .cookie-modal-content {
    padding: 19px 8px 15px 11px;
    min-width: 210px;
  }
}

/* --------------------------------------------------- */
/* FORMS (for contact/subscribe if any)                */
/* --------------------------------------------------- */
input, textarea, select {
  font-family: 'Roboto', serif;
  font-size: 1rem;
  color: #174036;
  border-radius: 4px;
  border: 1px solid #bee2c7;
  background: #fff;
  padding: 11px 14px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(35,127,82,0.06);
  max-width: 100%;
  outline: none;
  transition: border 0.16s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.6px solid #237f52;
  box-shadow: 0 0 6px #bee2c7;
}
label {
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  color: #237f52;
  font-weight: 500;
  margin-bottom: 6px;
}

/* --------------------------------------------------- */
/* RESPONSIVE                                         */
/* --------------------------------------------------- */
@media (max-width:600px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.11rem; }
  section, .section { padding: 24px 0; margin-bottom: 32px; }
  .feature-item { padding: 16px 8px 12px 12px; min-width: 0; }
  .card { padding: 13px 6px 10px 10px; min-width: 0; }
  .map-snippet img { width: 44px; height: 44px; }
  .container { padding: 0 3px; }
  .footer-navigation { gap: 16px; font-size: 0.93rem; }
  .footer-contact { font-size: 0.91rem; }
}

/* --------------------------------------------------- */
/* MICRO-INTERACTIONS & TRANSITIONS                    */
/* --------------------------------------------------- */
button, .cta-button, .feature-item, .card, .testimonial-card {
  transition: box-shadow 0.15s, background 0.15s, color 0.16s, transform 0.13s;
}

/* --------------------------------------------------- */
/* ADDITIONAL LAYOUT FIXES & UTILS                     */
/* --------------------------------------------------- */
@media (max-width: 430px) {
  .feature-grid, .card-container, .content-grid { flex-direction: column; gap: 12px !important; }
  .feature-item, .card, .testimonial-card { min-width: 0; max-width: 100%; }
}

/* Utility classes */
.mt-8 { margin-top: 8px!important; }
.mb-8 { margin-bottom: 8px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mt-24 { margin-top: 24px!important; }
.mb-24 { margin-bottom: 24px!important; }
.d-flex { display: flex !important; }
.ai-center { align-items: center !important; }
.ai-start { align-items: flex-start !important; }
.gap-24 { gap: 24px !important; }
.fs-14 { font-size: 0.875rem !important; }

/******************************* END ******************/
