/* --- CSS RESET & BASE STYLES --- */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  background: #F6F7F9;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #2E322C;
  background: #F6F7F9;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: #14397C;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #357D51;
  text-decoration: underline;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 24px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18422e;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem; /* 21px */
  margin-bottom: 14px;
}
h4 {
  font-size: 1.12rem; /* 18px */
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
  color: #2E322C;
}
strong {
  color: #14397C;
  font-weight: 700;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 16px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  background-color: #e3e8e2;
  color: #18422e;
  font-weight: 600;
}
td {
  background-color: #fff;
  color: #2E322C;
}
tr:nth-child(even) td {
  background-color: #F6F7F9;
}
code, pre {
  font-family: monospace;
  background: #E8ECEB;
  padding: 3px 6px;
  border-radius: 4px;
}

/* --- CONTAINER & LAYOUTS --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(74, 93, 41, 0.06), 0 1.5px 6px rgba(60,93,77,0.02);
  padding: 28px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  flex: 1 1 280px;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 1px solid #e3e8e2;
}
.card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 6px 20px rgba(74,93,41,0.13);
  z-index: 2;
}
.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;
  background: #F6F7F9;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(38,61,44,0.07);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(74,93,41,0.09);
  padding: 24px 18px 18px;
  min-width: 210px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  border: 1px solid #e3e8e2;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-item:hover {
  box-shadow: 0 6px 18px rgba(101,137,90,0.15);
  transform: translateY(-3px) scale(1.02);
}

/* --- BRAND & NATURE/ORGANIC DESIGN --- */
body, .section {
  background: #F6F7F9;
}
.section {
  /* background organic edge: subtle wavy shape on top via SVG bg-image or border-radius */
  border-radius: 60px 30px 60px 30px/30px 60px 30px 60px;
  background: #F6F7F9;
  box-shadow: 0 1.5px 12px rgba(110, 110, 85, 0.05);
}
.hero {
  background: #EAF6F1;
  border-radius: 0 0 56px 56px/0 0 32px 32px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 0 56px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #18422e;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.hero .subtitle {
  font-size: 1.2rem;
  color: #357D51;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.cta {
  background: #EAF6F1;
  border-radius: 34px 12px 32px 18px/22px 38px 22px 34px;
  margin-bottom: 60px;
  padding: 40px 0;
}

/* --- NAVIGATION & LOGO --- */
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.logo img {
  height: 38px;
  width: auto;
}
header {
  background: #fff;
  border-bottom: 2px solid #E3E8E2;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  flex-wrap: wrap;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 4px 3px;
  font-size: 1rem;
  color: #18422e;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.14s, color 0.16s;
}
.main-nav a:hover,
.main-nav a.active {
  background: #EAF6F1;
  color: #14397C;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #6DB18B;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 30px;
  margin-left: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 3px 9px rgba(109,177,139,0.10);
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.11s;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #357D51;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(53,125,81,0.13);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #357D51;
  margin-left: 12px;
  cursor: pointer;
  z-index: 202;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.16s, transform 0.1s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #EAF6F1;
  color: #14397C;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2400;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.65,0,0.35,1);
  box-shadow: 0 2px 24px rgba(20,57,124,0.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #357D51;
  margin: 24px 28px 12px 0;
  cursor: pointer;
  padding: 3px 14px 5px 3px;
  border-radius: 7px;
  transition: background 0.16s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #EAF6F1;
  color: #14397C;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 32px;
  margin-top: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #18422e;
  font-weight: 500;
  padding: 16px 0 8px 2px;
  border-bottom: 1px solid #e3e8e2;
  transition: background 0.13s, color 0.15s;
  width: 90%;
  border-radius: 8px 0 0 8px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #EAF6F1;
  color: #357D51;
}
@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 8px;
  }
  .main-nav a {
    font-size: 0.94rem;
    padding: 3px 2px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding: 10px 8px;
  }
}
@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-close {
    display: none !important;
  }
}

/* --- FEATURE GRID --- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-item img {
  height: 38px;
  width: 38px;
  margin-bottom: 3px;
}
.feature-item h3 {
  color: #357D51;
  font-size: 1.26rem;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.feature-item p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #2E322C;
}

/* --- STATISTICS GRID --- */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.stats-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.6px 13px rgba(74,93,41,0.08);
  padding: 24px 20px 22px;
  min-width: 170px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.stats-grid h3 {
  color: #14397C;
  font-size: 1.44rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- SERVICE CARDS & PROCESS STEPS --- */
.services-list, .process-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.service-card, .process-step {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(109,177,139,0.10);
  padding: 28px 18px 18px;
  min-width: 260px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  border: 1px solid #e3e8e2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.19s, transform 0.11s;
}
.service-card:hover, .process-step:hover {
  box-shadow: 0 7px 22px rgba(53,125,81,0.08);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}
.service-card h2, .process-step h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #357D51;
  font-size: 1.20rem;
  margin-bottom: 4px;
}
.service-card p, .process-step p {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #47674e;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14397C;
  font-size: 1.12rem;
  font-weight: 600;
  margin-top: 7px;
}
.process-step img {
  height: 36px;
  width: 36px;
  margin-bottom: 10px;
}

/* --- ABOUT SHORT/LIST STYLES --- */
.about-short .read-more-link {
  color: #357D51;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: none;
  border: none;
  font-size: 1.02rem;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background 0.12s, color 0.13s;
}
.about-short .read-more-link:hover, .about-short .read-more-link:focus {
  background: #EAF6F1;
  color: #14397C;
  text-decoration: underline;
}

ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #285d36;
}
ul li strong {
  color: #14397C;
}

.pricing-table {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(109,177,139,0.07);
}
.pricing-table th, .pricing-table td {
  font-size: 1rem;
}

/* --- CONTACT / CONFIRMATION --- */
.contact-section, .map-section, .contact-teaser, .confirmation-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 44px 24px 24px 24px / 24px 44px 24px 44px;
}
.contact-details ul {
  list-style-type: none;
  margin-bottom: 16px;
}
.contact-details ul li {
  margin-bottom: 10px;
  color: #265938;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.contact-details img {
  height: 22px;
  width: 22px;
}
.confirmation-message {
  padding: 24px 18px;
  background: #EAF6F1;
  border-radius: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.next-steps {
  margin-top: 12px;
}

/* --- ACCORDION/FAQ --- */
.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 10px rgba(31,61,42,0.08);
  padding: 24px 20px;
  margin-bottom: 8px;
  transition: box-shadow 0.13s, transform 0.11s;
  font-size: 1rem;
  color: #285d36;
  border: 1px solid #e3e8e2;
}
.faq-item h2 {
  font-size: 1.11rem;
  color: #357D51;
  margin-bottom: 9px;
  font-weight: 600;
}
.faq-item p {
  margin-bottom: 0;
  color: #163327;
}

/* --- LEGAL & TEXT SECTIONS --- */
.legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 44px 10px 24px 34px / 24px 44px 40px 24px;
  background: #fff;
  box-shadow: 0 1.5px 12px rgba(110, 110, 85, 0.048);
}
.legal-section h1, .legal-section h2 {
  color: #357D51;
}

/* --- FOOTER --- */
footer {
  background: #EAF6F1;
  color: #18422e;
  padding: 34px 0 10px;
  border-radius: 35px 35px 0 0 / 20px 20px 0 0;
  box-shadow: 0 -2px 16px rgba(74,93,41,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-brand img {
  height: 42px;
  width: 42px;
}
.footer-brand p {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #14397C;
  font-size: 1.04rem;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid #d6ecd9;
  padding-top: 20px;
  font-size: 0.95rem;
}
.footer-info > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-info h4 {
  font-size: 1.04rem;
  color: #265938;
  margin-bottom: 8px;
}
.footer-info nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-info a {
  color: #18422e;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s;
  font-weight: 500;
  font-size: 0.98rem;
}
.footer-info a:hover {
  color: #357D51;
}
.footer-info img {
  height: 17px;
  width: 17px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
address {
  font-style: normal;
  color: #357D51;
  font-size: 0.98rem;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #18422e;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px 20px;
  z-index: 2900;
  box-shadow: 0 -2px 20px rgba(20,57,124,0.13);
  font-size: 1rem;
  border-radius: 22px 22px 0 0 / 18px 18px 0 0;
  animation: banner-fadein 0.6s cubic-bezier(.73,0,.4,1);
}
@keyframes banner-fadein {
  from {transform: translateY(90px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner button {
  margin-left: 8px;
}
.cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #6DB18B;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 8px rgba(109,177,139,0.10);
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.14s, color 0.11s, transform 0.09s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #357D51;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}
.cookie-settings-btn {
  background: #F6F7F9;
  color: #14397C;
  border: 1px solid #6DB18B;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #EAF6F1;
  color: #357D51;
  border-color: #357D51;
}
/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(16,43,27,0.10);
  z-index: 3001;
  animation: banner-fadein 0.4s;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3002;
  background: #fff;
  color: #18422e;
  padding: 32px 22px 28px;
  border-radius: 24px;
  box-shadow: 0 5px 32px rgba(53,125,81,0.21);
  min-width: 280px;
  max-width: 96vw;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-in 0.28s cubic-bezier(.84,0,.16,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modal-in {
  from { opacity: 0; transform: translate(-50%, -42%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #357D51;
  font-weight: 600;
  margin-bottom: 9px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 9px 0;
  background: #F6F7F9;
  border-radius: 12px;
  padding: 9px 14px;
}
.cookie-modal-category .category-toggle {
  accent-color: #6DB18B;
  width: 22px; height: 22px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #357D51;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #14397C;
}
@media (max-width: 600px) {
  .cookie-modal {
    min-width: 85vw;
    padding: 20px 7vw 20px;
  }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
  .footer-info {
    gap: 24px;
  }
  .card, .feature-item, .service-card, .process-step, .stats-grid > div {
    min-width: 200px;
    flex: 1 1 200px;
  }
}
@media (max-width: 768px) {

  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section, .contact-section, .map-section, .cta, .legal-section, .confirmation-section {
    padding: 28px 7px;
    margin-bottom: 38px;
    border-radius: 24px 12px 18px 12px/12px 22px 12px 32px;
  }
  .card-container, .features .feature-grid, .stats-grid, .services-list, .process-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card, .feature-item, .service-card, .process-step, .stats-grid > div {
    max-width: 100%;
    min-width: 0;
    flex-grow: 1;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-info {
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .hero {
    padding-top: 20px;
    padding-bottom: 26px;
    border-radius: 0 0 30px 30px/0 0 20px 20px;
    min-height: 170px;
  }
  h1 {
    font-size: 1.70rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .cta {
    border-radius: 16px 8px 10px 8px/10px 20px 10px 22px;
    padding: 18px 0;
  }
}
@media (max-width: 480px) {
  .footer-brand img {
    height: 33px;
    width: 33px;
  }
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* --- ANIMATIONS & TRANSITIONS --- */
.card, .feature-item, .service-card, .process-step, .testimonial-card, .faq-item {
  transition: box-shadow 0.16s, transform 0.14s;
}
.cta-btn, .read-more-link, .main-nav a, .footer-info a{
  transition: background 0.15s, color 0.12s, transform 0.10s;
}

/* --- FOCUS STATES --- */
a:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible, .cookie-settings-btn:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2px solid #14397C;
  outline-offset: 2px;
  box-shadow: none;
  background: #EAF6F1;
}


/* --- HIGH CONTRAST FOR TESTIMONIALS/REVIEWS (not present in code but prepared) --- */
.testimonial-card, .review-card {
  background: #fff;
  color: #18422e;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px rgba(38,61,44,0.13);
}

/* END OF CSS */
