/* CSS RESET & BASE STYLES */
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.6;
  background: #F5F7EC;
  color: #2E4331;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #327c4a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #79B892;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
strong {
  font-weight: bold;
}

/* BRAND FONTS & CUSTOM FONT-FACE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233625;
  margin-bottom: 16px;
  font-weight: 900;
  letter-spacing: .8px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.125rem;
  color: #2E4331;
}

.subheadline {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

/* HEADER, NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(46,67,49,0.06), 0 1.5px 0 #79B892 inset;
  position: relative;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0 18px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  color: #2E4331;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 24px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:not(.cta-button):hover,
.main-nav a:not(.cta-button):focus {
  background: #F5F7EC;
  color: #327c4a;
}

.main-nav a img {
  height: 42px;
  width: auto;
  margin-right: 10px;
}

.cta-button {
  padding: 9px 28px;
  background: #79B892;
  color: #fff !important;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(121,184,146,0.18), 0 0 0 2px #F5F7EC;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  position: relative;
  margin-left: 20px;
}
.cta-button:hover,
.cta-button:focus {
  background: #2E4331;
  color: #F5F7EC !important;
  box-shadow: 0 4px 16px 0 rgba(121,184,146,0.27);
  outline: none;
}

/* Responsive MAIN-NAV & Burger */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 32px;
  top: 28px;
  background: #79B892;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.45rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1.5px 0 #2E4331 inset, 0 2px 11px rgba(46,67,49,0.08);
  transition: background 0.17s, color 0.18s;
  z-index: 106;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #2E4331;
  color: #79B892;
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #233625ee;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.69,.13,.35,1.37);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.3rem;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  margin-left: auto;
  margin-top: 18px;
  margin-bottom: 10px;
  box-shadow: none;
  transition: color 0.19s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #79B892;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  width: 100%;
  align-items: flex-start;
  padding: 24px 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 3px 12px 0;
  font-weight: 700;
  transition: color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #79B892;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 10px;
    font-size: .97rem;
  }
  .cta-button {
    margin-left: 8px;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* END HEADER/NAV */

/* HERO SECTION */
.hero, .features, .about, .contact, .services, .section, .testimonials, .footer {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 38px 8px 38px 8px;
  box-shadow: 0 8px 32px 0 rgba(121,184,146,0.09);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero {
  background: linear-gradient(92deg, #79B892 25%, #ece576 95%, #F5F7EC 100%);
  color: #2E4331;
  display: flex;
  align-items: center;
  min-height: 360px;
  border-radius: 0 0 54px 8px;
  margin-bottom: 50px;
  box-shadow: 0 4px 42px 0 rgba(46,67,49,0.13);
}
.hero h1 {
  color: #2E4331;
  font-size: 2.7rem;
  line-height: 1.04;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: .7px;
  margin-bottom: 10px;
  text-shadow: 0 3px 24px #b0d9bfb8;
}
.hero .subheadline {
  font-size: 1.32rem;
  margin-bottom: 24px;
}
.hero .cta-button {
  font-size: 1.11rem;
}
@media (max-width: 768px) {
  .hero {
    min-height: 260px;
    padding: 34px 10px 44px 10px;
    border-radius: 0 0 23px 8px;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
}

/* FLEXIBLE GRIDS & CARDS (MANDATORY PATTERNS) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fefefe;
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 2px 12px rgba(46,67,49,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  min-width: 270px;
  min-height: 170px;
  transition: box-shadow 0.2s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(46,67,49,0.14);
  transform: translateY(-4px) scale(1.012);
}

.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;
}

/* Testimonial Cards (MANDATORY .testimonial-card Flex) */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F5F7EC;
  border-radius: 22px 8px 22px 8px;
  box-shadow: 0 2px 12px 0 rgba(121,184,146,0.07);
  margin-bottom: 22px;
  position: relative;
  font-size: 1.09rem;
  color: #2E4331;
  border-left: 9px solid #79B892;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(46,67,49,0.12);
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #278a49;
  font-size: 1rem;
  margin-left: auto;
  opacity: .88;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7fcf9;
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 1.5px 10px 0 rgba(46,67,49,0.09);
  padding: 24px 18px;
  position: relative;
  min-width: 230px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item:hover {
  box-shadow: 0 7px 25px 0 rgba(46,67,49,0.11);
  transform: translateY(-3px) scale(1.016);
  background: #e1f7d2;
}

/* Feature-grid & Project-highlights */
.feature-grid, .project-highlights, .service-listings, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.project-item, .service-item, .blog-post-item {
  background: #fff;
  border: 1px solid #e4f6e7;
  border-radius: 16px 6px 16px 6px;
  box-shadow: 0 1.5px 12px 0 rgba(46,67,49,0.07);
  padding: 26px 22px;
  flex: 1 1 300px;
  min-width: 240px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.project-item:hover, .service-item:hover, .blog-post-item:hover {
  border-color: #79B892;
  box-shadow: 0 7px 28px 0 rgba(121,184,146,0.16);
}

/* USP or benefits lists */
.usp-list, .benefits-list, .category-overview, .office-hours {
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 1.10rem;
}
.usp-list li, .benefits-list li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
.usp-list li:before, .benefits-list li:before {
  content: '🌱';
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 1px;
  color: #79B892;
}
.benefits-list li:before {
  content: '✓';
  color: #327c4a;
  font-weight: bold;
  font-size: 1.08em;
}

.category-overview {
  font-family: 'Montserrat', Arial;
  font-size: 1rem;
  color: #233625;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.text-section ul, .text-section li {
  font-size: 1.08rem;
}

.map-embed {
  background: #e9f4ea;
  border-radius: 12px;
  padding: 14px;
  margin-top: 15px;
  box-shadow: 0 1.5px 7px 0 rgba(121,184,146,0.07);
  max-width: 400px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 18px 0;
  align-items: center;
}
.trust-badges img {
  width: 54px;
  height: 54px;
  filter: grayscale(25%) brightness(1.18) contrast(1.08) drop-shadow(0 2px 0 #e4f6e7);
}

/* CTA BUTTONS (Again for .blog, etc) */
.subscribe-section .cta-button, .text-section .cta-button {
  margin-top: 20px;
}

/* FOOTER */
footer {
  background: #233625;
  color: #fdfdfd;
  padding: 44px 0 18px 0;
  margin-top: 40px;
  border-radius: 30px 30px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #F5F7EC;
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 13px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #79B892;
  color: #2E4331;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: .91;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  filter: hue-rotate(-14deg) drop-shadow(0 2px 0 #79B892);
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #2E4331;
  color: #fff;
  z-index: 1700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 1.08rem;
  padding: 18px 16px 16px 16px;
  box-shadow: 0 -4px 30px 0 rgba(46,67,49,0.19);
  border-radius: 18px 18px 0 0;
  animation: slideUpBanner .6s cubic-bezier(.36,2,.1,.95);
}
@keyframes slideUpBanner {
  from { transform: translateY(110%); opacity: 0.2; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-left: 16px;
  padding: 8px 19px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 21px;
  background: #79B892;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 1.03rem;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 1.2px 0 #F5F7EC;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #ece576;
  color: #2E4331;
}
.cookie-settings {
  background: #233625;
  color: #fff;
  border-radius: 20px;
  max-width: 430px;
  width: 90vw;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.93);
  z-index: 2000;
  padding: 32px 26px 24px 26px;
  box-shadow: 0 12px 52px 0 rgba(46,67,49,0.22);
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: fadeSettingsModal .3s ease;
}
.cookie-settings.open {
  display: flex;
  animation: fadeSettingsModal .33s cubic-bezier(.36,2,.1,.95);
}
@keyframes fadeSettingsModal {
  from { opacity: 0; transform: translate(-50%, -60%) scale(.84); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-settings h2 {
  color: #ece576;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.34rem;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  background: #293f2e;
  padding: 13px 14px;
  border-radius: 14px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-toggle {
  margin: 0 0 0 8px;
}
.cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-toggle label {
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 13px;
  background: #416c54;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  font-size: 0.98rem;
}
.cookie-toggle input[type="checkbox"]:checked + label {
  background: #79B892;
  color: #233625;
}
.cookie-settings-buttons {
  display: flex;
  gap: 15px;
  margin-top: 14px;
}
.cookie-settings-buttons button {
  flex: 1;
  background: #ece576;
  color: #2E4331;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  font-size: 1.05rem;
  margin: 0;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-settings-buttons button:hover,
.cookie-settings-buttons button:focus {
  background: #79B892;
  color: #fff;
}
.cookie-settings-close {
  position: absolute;
  right: 15px;
  top: 11px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  opacity: .82;
  transition: color 0.19s;
}
.cookie-settings-close:hover,
.cookie-settings-close:focus {
  color: #ece576;
}

/* Responsive ADJUSTMENTS */
@media (max-width: 930px) {
  .feature-grid, .project-highlights, .service-listings, .blog-post-list {
    gap: 16px;
  }
  .project-item, .service-item, .blog-post-item {
    min-width: 200px;
    padding: 15px 13px;
  }
  .feature-item {
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 17px;
  }
  .hero, .features, .about, .contact, .services, .section, .testimonials, .footer {
    padding: 24px 6px;
    border-radius: 16px 3px 16px 3px;
  }
  .feature-grid, .project-highlights, .service-listings, .blog-post-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.18rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .feature-item, .card {
    padding: 10px 7px;
  }
  .testimonial-card, .project-item, .service-item {
    padding: 13px 6px;
    font-size: .98rem;
  }
  .footer-brand {
    flex-direction: column;
    gap: 5px;
  }
  .footer-nav {
    gap: 8px;
    font-size: .92rem;
  }
}

/* ANIMATIONS & HOVER EFFECTS */
.cta-button, .cookie-banner button, .footer-nav a, .card, .feature-item, .project-item, .service-item, .testimonial-card {
  transition: box-shadow 0.19s, background 0.18s, color 0.16s, transform 0.13s;
}
.cta-button:active {
  transform: scale(0.97);
}

/* ARTISTIC DECORATIVE ACCENTS */
.hero:before, .features:before {
  content: '';
  position: absolute;
  right: -70px;
  top: -75px;
  width: 190px;
  height: 190px;
  border-radius: 100% 82% 64% 81%;
  background: #79B892;
  opacity: .09;
  pointer-events: none;
  z-index: 1;
}
.features:after {
  content: '';
  position: absolute;
  left: -70px;
  bottom: -55px;
  width: 160px;
  height: 160px;
  border-radius: 60% 100% 80% 70%;
  background: #ece576;
  opacity: .13;
  pointer-events: none;
  z-index: 1;
}

/* FORM ELEMENTS (for possible contact forms, etc) */
input, textarea, select, button {
  font-size: 1rem;
  font-family: inherit;
  border-radius: 7px;
  border: 1.5px solid #79B892;
  padding: 8px 12px;
  margin-bottom: 13px;
  background: #f7fcf9;
  color: #233625;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #ece576;
  background: #f3ffe9;
}

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

/* Z-INDEX CLARITY FOR DIALOGS */
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 1700; }
.cookie-settings { z-index: 2000; }

/* CUSTOM ARTISTIC FONTS (as illustrative, if no font available fallback) */
body, p, li, a, span, .main-nav, .footer-nav {
  font-family: 'Open Sans', Arial, sans-serif;
}
h1, h2, h3, .cta-button, .main-nav a, .footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* MICRO-INTERACTIONS */
.card:focus, .feature-item:focus, .testimonial-card:focus {
  outline: 2.5px solid #ece576;
  outline-offset: 2.5px;
}
.cta-button:focus {
  outline: 3px dashed #ece576;
  outline-offset: 2px;
}

/* ENSURE NO OVERLAPPING & CONSISTENT SPACING */
.card, .feature-item, .project-item, .service-item, .blog-post-item {
  margin-bottom: 20px;
}
.section,
.hero, .features, .about, .contact, .services, .testimonials {
  margin-bottom: 60px !important;
  padding-bottom: 40px !important;
}

/* ENSURE NO GRID, COLUMNS OR ABSOLUTE LAYOUTS FOR CONTENT CARDS */
/* (Decorative accents may use position: absolute) */
/* NO display: grid; NO columns */

/* END: CSS */