/* RESET & NORMALIZE – SCANDINAVIAN CLEAN BASE */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F2F7F2;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #276D3D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A6B877;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CONTAINERS/LAYOUTS */
.container {
  max-width: 1176px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 780px;
  margin: 0 auto;
}

/* TYPOGRAPHY */
h1, .logo {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #276D3D;
  line-height: 1.2;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #276D3D;
  line-height: 1.25;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}
h1, h2, h3 {
  margin-top: 0;
}
p, ul, ol, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
}
strong {
  font-weight: 600;
  color: #276D3D;
}

/* NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #E4E9E1;
  box-shadow: 0 2px 8px rgba(39,109,61,0.03);
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 10px 20px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 5px 0;
  color: #276D3D;
  border-radius: 6px;
  transition: background .17s, color .17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F2F7F2;
}
.main-nav .cta-primary {
  background: #276D3D;
  color: #fff !important;
  padding: 7px 22px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(39,109,61, 0.03);
  transition: background .18s, color .18s;
  margin-left: 8px;
  letter-spacing: 0.02em;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #A6B877;
  color: #276D3D !important;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #276D3D;
  cursor: pointer;
  margin-left: 18px;
}

/* MOBILE MENU OVERLAY  */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.73,.01,.3,1);
  box-shadow: -4px 0 24px rgba(39,109,61,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #276D3D;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color .22s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #A6B877;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #276D3D;
  padding: 13px 0;
  border-radius: 8px;
  transition: background .13s, color .16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2F7F2;
  color: #A6B877;
}

/* HERO SECTION */
.hero {
  background: #F2F7F2;
  box-shadow: 0 4px 32px rgba(39,109,61,0.06);
  border-radius: 12px;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 42px;
  padding: 48px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 650px;
}
.hero h1 {
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.18rem;
  color: #384634;
  margin-bottom: 20px;
}

/* CTA PRIMARY BUTTONS */
.cta-primary {
  display: inline-block;
  background: #276D3D;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  padding: 10px 34px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 2px 8px rgba(39,109,61, 0.05);
  letter-spacing: 0.01em;
  margin-top: 10px;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #A6B877;
  color: #276D3D;
  box-shadow: 0 4px 16px rgba(39,109,61, 0.13);
}

/* CARD & GRID ELEMENTS */
.card-container, .service-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card, .service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 22px rgba(166,184,119, 0.08);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 240px;
  max-width: 340px;
  transition: transform .17s, box-shadow .21s;
}
.card:hover, .service-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 30px rgba(39,109,61, 0.11);
}
.service-list {
  justify-content: flex-start;
}
.service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  filter: grayscale(25%) brightness(1.02);
}
.service-card h3 {
  font-size: 1.13rem;
  color: #276D3D;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding: 22px 26px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 22px rgba(39,109,61, 0.07);
  border-left: 4px solid #A6B877;
  max-width: 570px;
  transition: box-shadow .18s;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #384634;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-size: 0.99rem;
  font-weight: 600;
  color: #276D3D;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px rgba(166,184,119,0.16);
}

/* FOOTER */
footer {
  background: #F2F7F2;
  border-top: 1.5px solid #E4E9E1;
  padding: 36px 0 24px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
footer nav.footer-nav {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin: 0 28px 0 16px;
}
footer nav.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #276D3D;
  font-size: 1rem;
  padding: 2px 0;
  border-radius: 4px;
  transition: background .16s, color .15s;
}
footer nav.footer-nav a:hover,
footer nav.footer-nav a:focus {
  background: #E4E9E1;
  color: #A6B877;
}
.footer-info {
  font-size: 0.97rem;
  color: #384634;
}
footer img {
  height: 34px;
  margin-bottom: 12px;
  margin-right: 24px;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.faq-accordion h3 {
  font-size: 1.11rem;
  color: #276D3D;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color .18s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  color: #A6B877;
}
.faq-accordion p {
  font-size: 1.01rem;
  margin-left: 8px;
  color: #222;
  margin-bottom: 6px;
}
.contact-suggestion {
  margin-top: 16px;
  font-size: 1.02rem;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  background: #E4E9E1;
  color: #276D3D;
  border-radius: 10px;
  padding: 18px 16px;
  font-size: 1rem;
  margin-top: 18px;
}

/* CONFIRMATION SECTION */
.confirmation-section {
  align-items: flex-start;
  gap: 22px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 18px rgba(39,109,61,0.09);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 32px;
  gap: 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: transform .32s;
}
.cookie-banner .cookie-text {
  max-width: 600px;
  color: #384634;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #276D3D;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-btn.secondary {
  background: #fff;
  color: #276D3D;
  border: 1px solid #A6B877;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover {
  background: #A6B877;
  color: #276D3D;
}
.cookie-settings-btn {
  background: #fff;
  color: #276D3D;
  border: 1.5px solid #A6B877;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 99999;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 38px rgba(39,109,61,0.09);
  width: 98vw;
  max-width: 410px;
  padding: 32px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalFadeIn .41s cubic-bezier(.50,.02,.31,1.14);
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: translate(-50%,-60%) scale(.98); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #276D3D;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1.07rem;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #E4E9E1;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background .14s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #A6B877;
}
.cookie-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 100%;
  transition: left .13s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #276D3D;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  color: #A6B877;
}

/* ACCESSIBILITY & MISC */
:focus {
  outline: 2.5px solid #A6B877;
  outline-offset: 2px;
}
::-webkit-input-placeholder, ::placeholder {
  color: #A6B877;
  opacity: .86;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1230px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 970px) {
  .main-nav {
    gap: 14px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper, .card-container, .content-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
  .testimonial-card, .service-card {
    max-width: 98vw;
    min-width: 0;
    padding: 16px 12px;
  }
  .hero {
    padding: 18px 0 38px 0;
    min-height: 204px;
    margin-top: 3px;
    border-radius: 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  .map-placeholder {
    padding: 10px 8px;
    font-size: .98rem;
  }
}
@media (max-width: 500px) {
  .hero {
    padding: 10px 0 22px 0;
    min-height: 153px;
    margin-bottom: 24px;
    font-size: 1.02rem;
  }
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .hero h1, h1 {
    font-size: 1.34rem;
  }
}

/* FLEXBOX UTILITY CLASSES (PATTERNS) */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* END CSS */