/* 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, menu, 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,
main, 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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  background: #F0F6ED;
  -webkit-font-smoothing: antialiased;
  color: #245A1C;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #378219;
  text-decoration: none;
  transition: color 0.23s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #245A1C;
}

/* BRAND FONTS */
@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');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.16;
  color: #245A1C;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.12rem; }

p, ul, ol, li, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #245A1C;
}
strong { font-weight: 700; }


/* MAIN LAYOUT AND CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin: 0 auto 0 auto;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 1024px) {
  section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  section {
    padding: 24px 2px;
    margin-bottom: 32px;
  }
}

/* HERO SECTION WITH GRADIENT BACKGROUND */
.hero {
  background: linear-gradient(120deg, #378219 0%, #529C43 100%);
  color: #fff;
  border-radius: 16px;
  margin-top: 24px;
  margin-bottom: 60px;
  box-shadow: 0 8px 36px rgba(52,90,28,0.08);
  position: relative;
  overflow: hidden;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta-primary {
  margin-top: 18px;
}

/* FLEXBOX UTILS FROM REQUIREMENTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(36,90,28,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.23s;
  min-width: 220px;
  max-width: 360px;
}
.card:hover {
  box-shadow: 0 6px 30px 2px rgba(52,156,67,0.14);
  transform: translateY(-4px) scale(1.015);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.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;
    align-items: flex-start;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature {
  background: #fff;
  box-shadow: 0 2px 8px rgba(52,156,67,0.07);
  border-radius: 16px;
  padding: 26px 20px;
  flex: 1 1 222px;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: box-shadow 0.23s, transform 0.2s;
}
.feature img {
  width: 45px;
  height: 45px;
}
.feature:hover {
  box-shadow: 0 8px 30px 2px rgba(36,90,28,0.12);
  transform: translateY(-2px) scale(1.011);
  z-index: 1;
}
.feature h3 {
  margin-bottom: 6px;
  color: #245A1C;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  background: #fff;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(52,90,28,0.07);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 540px;
  border-left: 8px solid #378219;
  transition: box-shadow 0.25s, border-color 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 1px rgba(52,156,67,0.13);
  border-color: #245A1C;
}
.testimonial-content p {
  color: #245A1C;
  font-size: 1.04rem;
  margin-bottom: 4px;
}
.testimonial-content strong {
  color: #245A1C;
  font-size: 1rem;
}

/* LAYOUT FOR MOBILE */
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
  }
}

/* --- TEAM PROFILE CARDS --- */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(52,156,67,0.08);
  flex: 1 1 220px;
  min-width: 160px;
  max-width: 340px;
  padding: 20px 18px;
  transition: box-shadow 0.22s;
}
.team-member:hover {
  box-shadow: 0 5px 23px 2px rgba(36,90,28,0.12);
}

/* --- SERVICE LIST --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 20px 0;
}
.service-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(52,156,67,0.08);
  padding: 26px 20px;
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}
.service-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 2px;
}
.service-item h2 {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}
.service-item h2 span {
  font-size: 0.9rem;
  font-weight: 400;
  background: #F0F6ED;
  color: #378219;
  border-radius: 7px;
  padding: 3px 10px 3px 10px;
  margin-left: 10px;
}
.service-item p {
  font-size: 1rem;
  color: #245A1C;
}

/* FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(36,90,28,0.07);
  padding: 14px 17px;
  transition: box-shadow 0.23s;
}
.faq-item:hover {
  box-shadow: 0 5px 17px 1px rgba(52,156,67,0.11);
}
.faq-item h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
}

/* --- TEXT-SECTION FOR RICH PAGES --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul, .text-section ol {
  margin-left: 24px;
  margin-bottom: 10px;
  padding-left: 14px;
  line-height: 1.8;
  color: #245A1C;
}
.text-section li {
  margin-bottom: 6px;
}

/* --- EXPERT TIPS --- */
.expert-tips {
  background: #F0F6ED;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(52,156,67,0.06);
}
.quick-tips-highlight ul {
  padding-left: 20px;
}
.quick-tips-highlight li {
  margin-bottom: 7px;
  font-weight: 500;
  color: #378219;
}

/* CONTACT DETAILS & MAP */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 16px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(36,90,28,0.05);
  margin-top: 10px;
}

/* --- CTAs & BUTTONS --- */
.cta-primary,
button.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #fff;
  background: linear-gradient(90deg, #378219 0%, #529C43 100%);
  border: none;
  border-radius: 30px;
  padding: 12px 34px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.23s, color 0.15s, box-shadow 0.22s, transform 0.18s;
  box-shadow: 0 2px 10px rgba(52,156,67,0.08);
  letter-spacing: 0.02em;
  margin-top: 8px;
  margin-bottom: 8px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #245A1C 0%, #378219 100%);
  color: #fff;
  box-shadow: 0 5px 16px 1px rgba(36,90,28,0.13);
  transform: translateY(-1px) scale(1.028);
}

/* LISTS */
ul, ol {
  margin-left: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
}
li {
  margin-bottom: 4px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(52,90,28,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px 16px 28px;
  z-index: 30;
  position: relative;
}
header img {
  height: 40px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.12rem;
  color: #245A1C;
  transition: color 0.15s;
  padding: 4px 7px;
  position: relative;
}
header nav a::after {
  content: '';
  display: block;
  height: 2.5px;
  background: linear-gradient(90deg,#378219 0%,#529C43 100%);
  width: 0%;
  border-radius: 7px;
  transition: width 0.19s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 80%;
}
header .cta-primary {
  margin-left: 30px;
}

@media (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px 14px 16px;
  }
  header nav {
    gap: 20px;
  }
  header .cta-primary {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  header nav,
  header .cta-primary {
    display: none;
  }
  header {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 12px 5vw;
  }
  header img {
    height: 35px;
  }
}

/* --- MOBILE NAVIGATION HAMBURGER & MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #378219;
  color: #245A1C;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 18px;
  right: 15px;
  z-index: 120;
  box-shadow: 0 2px 7px rgba(36,90,28,0.09);
  cursor: pointer;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F0F6ED;
  color: #378219;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36,90,28,0.96);
  transform: translateX(-100vw);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform 0.34s cubic-bezier(.46,.03,.52,.96);
  overflow-y: auto;
  box-shadow: 0 6px 40px 5px rgba(52,156,67,0.21);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 25px;
  right: 30px;
  cursor: pointer;
  z-index: 220;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.20s;
  border-radius: 10px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #378219;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 70px;
  margin-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 16px 0;
  border-radius: 8px;
  width: fit-content;
  transition: background 0.19s, color 0.17s;
  text-decoration: none;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0F6ED;
  color: #245A1C;
  padding-left: 18px;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #F0F6ED 0%, #ffffff 50%, #F0F6ED 100%);
  padding: 30px 4vw 16px 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  font-size: 1rem;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
  margin-top: 0;
}
.footer-navigation a {
  color: #245A1C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.14s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #378219;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #378219;
  align-items: flex-start;
  font-size: 1.05rem;
  margin-top: 0;
  margin-bottom: 0;
}
.footer-contact img {
  width: 1.2em;
  vertical-align: middle;
  margin-right: 4px;
}
.social-links {
  display: flex;
  gap: 24px;
  margin: 8px 0 0 0;
}
.social-links img {
  width: 33px;
  height: 33px;
  filter: grayscale(0.15) contrast(1.2);
  opacity: 0.93;
  transition: filter 0.20s, opacity 0.19s, transform 0.17s;
}
.social-links img:hover {
  filter: grayscale(0) contrast(2.5); opacity: 1;
  transform: scale(1.07);
}
footer > img {
  width: 44px; height: 44px;
  margin: 0 0 2px 0;
  opacity: 0.89;
}

.footer-contact br {
  line-height: 1.65;
}
footer > div:last-child {
  color: #245A1C;
  font-size: 0.93rem;
  opacity: 0.8;
}
@media (max-width: 600px) {
  footer {
    padding: 24px 2vw 12px 2vw;
    gap: 18px;
    font-size: 0.97rem;
  }
  .footer-navigation, .footer-contact, .social-links {
    gap: 13px;
  }
  .social-links img {
    width: 28px;
    height: 28px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -1px 16px 2px rgba(36,90,28,0.19);
  color: #245A1C;
  z-index: 7500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 22px 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  width: 100vw;
  animation: cookie-slide-in 0.55s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookie-slide-in {
  from { transform: translateY(140%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-text { flex: 1 1 256px; max-width: 560px; }

.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 8px 24px;
  margin-left: 12px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(52,156,67,0.12);
}
.cookie-accept {
  background: linear-gradient(90deg,#378219 0%,#529C43 99%);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #245A1C;
  color: #fff;
}
.cookie-reject {
  background: #F0F6ED;
  color: #245A1C;
  border: 1.5px solid #378219;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fff;
  color: #245A1C;
  border-color: #245A1C;
}
.cookie-settings {
  background: #fff;
  color: #378219;
  border: 1.5px solid #378219;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F0F6ED;
  color: #245A1C;
  border-color:#245A1C;
}
@media (max-width: 800px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    padding: 15px 6px;
  }
  .cookie-consent-text {
    max-width: 100vw;
  }
  .cookie-consent-banner button {
    margin: 8px 0 0 0;
  }
}

/* COOKIE CONSENT MODAL POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 7600;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,90,28,0.73);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #245A1C;
  border-radius: 20px;
  padding: 34px 28px 24px 28px;
  max-width: 430px;
  width: 98vw;
  box-shadow: 0 12px 48px 7px rgba(36,90,28,0.17);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookie-modal-in 0.38s cubic-bezier(.46,.03,.52,.96);
}
@keyframes cookie-modal-in {
  from { transform: scale(0.84) translateY(40px); opacity: 0;}
  to { transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 8px 0;
  font-size: 1rem;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #378219;
  width: 22px;
  height: 22px;
  border-radius: 8px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: transparent;
  border: none;
  color: #245A1C;
  font-size: 2rem;
  opacity: 0.58;
  cursor: pointer;
  transition: color 0.14s, opacity 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #378219;
  opacity: 1;
}

/* ---- FORMS (if any in extended version) ---- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #245A1C;
  border-radius: 10px;
  border: 1.5px solid #529C43;
  padding: 9px 12px;
  outline: none;
  margin-bottom: 13px;
  transition: border-color 0.19s;
}
input:focus, textarea:focus {
  border-color: #378219;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  color: #245A1C;
}

/* SPACINGS & UTILS */
.mt-8 {margin-top:8px;}
.mt-16 {margin-top:16px;}
.mt-24 {margin-top:24px;}
.mt-32 {margin-top:32px;}
.mb-8 {margin-bottom:8px;}
.mb-16 {margin-bottom:16px;}
.mb-24 {margin-bottom:24px;}
.mb-32 {margin-bottom:32px;}

/* VISUAL MODERN SHADOWS & RADIUS */
.card, .feature, .service-item, .faq-item, .testimonial-card, .team-member {
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(52,156,67,0.07);
  background: #fff;
}

/* MISC */
::-webkit-scrollbar { height: 11px; width: 10px; }
::-webkit-scrollbar-thumb {
  background: #D0DEC5;
  border-radius: 7px;
}
::-webkit-scrollbar-track {
  background: #F0F6ED;
}

::-webkit-input-placeholder { color: #245A1C; opacity: .48; }
::-moz-placeholder { color: #245A1C; opacity: .48; }
:-ms-input-placeholder { color: #245A1C; opacity: .48; }
::placeholder { color: #245A1C; opacity: .48; }

/* RESPONSIVE FONT SIZES */
@media (max-width: 600px) {
  h1 {font-size:2.0rem;}
  h2 {font-size:1.35rem;}
  h3 {font-size:1.1rem;}
  p, li, label {font-size:0.97rem;}
}

/* ENSURE NO GRID/COLUMN USAGE! */
/* ALL FLEXBOX: No display:grid, columns, etc. */
