/* CSS RESET & NORMALIZATION */
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: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F5E6;
  color: #1D2C23;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  background: #F5F5E6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  max-width: 100%;
  display: inline-block;
}
a {
  color: #22543D;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A2C59B;
  text-decoration: none;
}

/* TYPOGRAPHY & BOLD, MODERN SCALE */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #22543D;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #22543D;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #22543D;
  margin-bottom: 10px;
  line-height: 1.3;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: #22543D;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #1D2C23;
  font-size: 1.125rem;
  margin-bottom: 24px;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: #22543D;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

/* CONTAINERS & LAYOUT SPACING */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

/* SECTION & FLEX LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px 0 rgba(34, 84, 61, 0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(34, 84, 61, 0.12);
  padding: 28px 20px;
  position: relative;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(34,84,61,0.16);
  transform: translateY(-4px) scale(1.02);
}
.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-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(162,197,155,0.11);
  margin-bottom: 20px;
  border-left: 6px solid #A2C59B;
}
.testimonial-card p {
  color: #1D2C23;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 3px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #22543D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
/* Feature and Icon Lists */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.feature-grid > div {
  flex: 1 1 250px;
  background: #A2C59B12;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(34,84,61,0.06);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: background 0.15s;
}
.feature-grid > div:hover {
  background: #A2C59B22;
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.icon-list {
  list-style: none;
  padding: 0;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  font-size: 1rem;
  color: #22543D;
}
.icon-list img {
  width: 30px;
  height: 30px;
}
.idea-list {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.idea-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-weight: 500;
}
.idea-list li:before {
  content: "\25A0";
  color: #22543D;
  position: absolute;
  left: 0; top: 1px;
  font-size: 1rem;
}
.project-teaser-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.project-teaser-grid > div {
  flex: 1 1 240px;
  background: #A2C59B10;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(34,84,61,0.07);
  padding: 22px 18px;
}
.project-highlights ul {
  margin-top: 10px;
}
/* CTA Section */
.cta-section {
  margin-bottom: 60px;
  padding: 48px 20px;
  background: #A2C59B;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(34, 84, 61, 0.14);
  color: #22543D;
  text-align: center;
}
.cta-section h2, .cta-section p {
  color: #22543D;
}
.cta-section .btn-primary {
  margin-top: 16px;
}

/* ADDRESS & CONTACT BLOCKS */
.address-block, .open-hours, .map, .contact-info {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.address-block p, .open-hours p, .map p, .contact-info p {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  color: #1D2C23;
}
.address-block img, .open-hours img, .contact-info img {
  width: 20px;
  height: 20px;
}

/* BUTTONS */
.btn-primary {
  background: #22543D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  display: inline-block;
  border-radius: 16px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(34,84,61,0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.22s;
  margin-top: 16px;
  text-align: center;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #A2C59B;
  color: #22543D;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px 0 rgba(34,84,61,0.17);
}
.btn-secondary {
  background: #A2C59B;
  color: #22543D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 10px 26px;
  cursor: pointer;
  transition: background 0.21s, color 0.18s;
  margin: 0 10px 0 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #22543D;
  color: #fff;
}
.link-btn {
  color: #22543D;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0 4px;
}
.link-btn:hover {
  color: #A2C59B;
  text-decoration: none;
}

/* HEADER & NAVIGATION (DESKTOP) */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(34,84,61,0.05);
  position: sticky;
  top: 0;
  z-index: 900;
}
header > .container {
  min-height: 82px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22543D;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  padding: 4px 6px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.17s, color 0.13s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #A2C59B44;
  color: #22543D;
  text-decoration: none;
}
header .btn-primary {
  margin-left: auto;
  margin-top: 0;
}
.mobile-menu-toggle {
  display: none;
}

/* FOOTER */
footer {
  background: #22543D;
  color: #fff;
  padding: 48px 0 0 0;
  box-shadow: 0 -2px 16px 0 rgba(34,84,61,0.09);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  padding-bottom: 36px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #A2C59B;
}
footer .contact-info {
  color: #fff;
}
footer .contact-info p {
  color: #fff;
  font-size: 1rem;
}
footer img {
  display: block;
  margin-bottom: 18px;
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 70px 0 40px 0;
  background: #A2C59B;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 10px 48px 0 rgba(34,84,61,0.14);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1, .hero .subheadline {
  color: #22543D;
}
.hero .btn-primary {
  margin-top: 28px;
}

/* ACCORDION FOR FAQ */
.faq-accordion h3 {
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  padding: 12px 0 4px 0;
  transition: color 0.15s;
}
.faq-accordion h3:hover {
  color: #A2C59B;
}
.faq-accordion p {
  margin-bottom: 16px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* TIP OVERVIEW */
.tip-overview {
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #22543D10;
  box-shadow: 0 1px 7px 0 rgba(162,197,155,0.10);
}
.tip-overview ul {
  margin-bottom: 0;
}
/* MAP Block */
.map {
  margin: 24px 0 18px 0;
}

/* UTILITIES, EFFECTS & GEOMETRIC SHAPES */
.rounded {
  border-radius: 18px !important;
}
.shadow {
  box-shadow: 0 4px 12px 0 rgba(34, 84, 61, 0.10);
}
.bg-primary {
  background: #22543D !important;
  color: #fff !important;
}
.bg-secondary {
  background: #A2C59B !important;
  color: #22543D !important;
}
.bg-accent {
  background: #F5F5E6 !important;
  color: #22543D !important;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 22px;
  font-size: 2.2rem;
  background: none;
  color: #22543D;
  border: none;
  z-index: 1202;
  cursor: pointer;
  transition: color 0.2s;
  width: 48px;
  height: 48px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #A2C59B;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.63,-0.01,.38,1.01);
  box-shadow: 0 4px 32px 0 rgba(34,84,61,0.18);
  padding: 38px 30px 30px 30px;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #22543D;
  margin-bottom: 40px;
  cursor: pointer;
  z-index: 1201;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A2C59B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22543D;
  font-weight: 800;
  font-size: 1.25rem;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.17s, color 0.17s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A2C59B44;
  color: #22543D;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #1D2C23;
  color: #fff;
  padding: 26px 18px;
  z-index: 1500;
  box-shadow: 0 -2px 30px 0 rgba(0,0,0,0.17);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-radius: 32px 32px 0 0;
  font-size: 1rem;
  animation: cookie-in 0.55s cubic-bezier(.64,-0.01,.38,1.03);
}
@keyframes cookie-in {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button,
.cookie-banner .btn-secondary, .cookie-banner .btn-primary {
  padding: 10px 20px;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: #A2C59B;
  color: #22543D;
  transition: background 0.18s, color 0.18s, box-shadow 0.13s;
  font-size: 1rem;
}
.cookie-banner button.accept {
  background: #22543D;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #A2C59B;
  color: #22543D;
}
.cookie-banner button.settings {
  background: #fff;
  color: #22543D;
  border: 1.5px solid #A2C59B;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #A2C59B;
  color: #22543D;
}
.cookie-banner button.reject {
  background: #fff;
  color: #22543D;
  border: 1.5px solid #A2C59B;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #A2C59B;
  color: #22543D;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1600;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,84,61,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal {
  background: #fff;
  color: #22543D;
  border-radius: 32px;
  box-shadow: 0 7px 52px 0 rgba(34,84,61,0.18);
  padding: 44px 32px 32px 32px;
  max-width: 460px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookie-modal-in 0.35s cubic-bezier(.6,.01,.36,1.06);
}
@keyframes cookie-modal-in {
  0% {transform: scale(0.82) translateY(70px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
}
.cookie-category label {
  font-weight: 600;
  color: #22543D;
}
.cookie-category .toggle {
  width: 40px; height: 24px;
  border-radius: 12px;
  background: #A2C59B;
  position: relative;
  display: inline-block;
}
.cookie-category input[type="checkbox"] {
  opacity: 0; width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute; left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(34,84,61,0.13);
  transition: transform 0.2s;
}
.cookie-category input:checked + .slider {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 15px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #A2C59B;
  border: none;
  background: transparent;
}

/* RESPONSIVE & MOBILE FIRST BREAKPOINTS */
@media (max-width: 1000px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1, .hero h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  header > .container {
    flex-direction: row;
    gap: 12px;
    min-height: 60px;
  }
  .hero {
    padding: 36px 0 18px 0;
    border-radius: 0 0 22px 22px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 30px;
    border-radius: 20px;
  }
  .feature-grid, .project-teaser-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 22px;
  }
}
@media (max-width: 620px) {
  .content-wrapper {
    max-width: 100vw !important;
    padding: 0 2px;
  }
  .section {
    padding: 12px 0;
    border-radius: 14px;
    margin-bottom: 26px;
  }
  .project-teaser-grid > div, .feature-grid > div, .card {
    border-radius: 11px;
    padding: 13px 8px;
  }
}

@media (max-width: 600px) {
  h1, .hero h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }
  header > .container {
    min-height: 56px;
  }
}

/* MOBILE NAV CONTROLS -- IMPORTANT ORDER! */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #A2C59B;
  outline-offset: 1px;
}

/* Z-INDEX & LAYERING CONTROL */
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close,
.cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 1200;
}

/* END OF STYLE.CSS */
