/* ===================== CSS RESET & 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F7F9;
  color: #1d2b23;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #155544;
}
h1 {font-size: 2.4rem;margin-bottom: 24px;line-height: 1.15;}
h2 {font-size: 1.8rem;margin-bottom: 20px;}
h3 {font-size: 1.25rem;margin-bottom: 10px;}
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #33413a;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
  color: #16597F;
}

/* ===================== CONTAINER & LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1184px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  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 4px 16px rgba(51, 65, 58, 0.07);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(25,162,102,0.16);
}

.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: 16px;
  box-shadow: 0 3px 12px rgba(22, 89, 127, 0.09);
  min-width: 250px;
  max-width: 378px;
  margin-right: 20px;
  margin-bottom: 20px;
  border-left: 6px solid #19A266;
  position: relative;
}
.testimonial-card p {
  font-size: 1rem;
  color: #16597F;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #557061;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #eaf5ec;
  border-radius: 13px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(25, 162, 102, 0.05);
}

/* ======================== HEADER & NAVIGATION ======================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(51,65,58,0.05);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #155544;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 11px;
  border-radius: 8px;
  transition: background 0.18s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: #eaf5ec;
  color: #19A266;
}

.cta-btn {
  background: #19A266;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  border: none;
  border-radius: 100px;
  padding: 13px 30px;
  box-shadow: 0 3px 12px rgba(25,162,102,0.10);
  transition: background 0.2s, box-shadow 0.3s, color 0.2s, transform 0.08s;
  cursor: pointer;
  display: inline-block;
  margin-left: 14px;
  text-align: center;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #155544;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 18px rgba(25,162,102,0.16);
}

/* ========================== MOBILE MENU ========================= */
.mobile-menu-toggle {
  display: none;
  background: #19A266;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  margin-left: 8px;
  cursor: pointer;
  z-index: 120;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #167944;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #f4f7f9;
  box-shadow: 0 2px 32px rgba(22, 89, 127, 0.13);
  z-index: 999;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.46, 0.03, 0.52, 0.96), opacity 0.24s;
}
.mobile-menu.open {
  transform: translateX(0vw);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #16597F;
  font-size: 2.1rem;
  border: none;
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 1000;
  cursor: pointer;
  padding: 2px 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 86px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #1A2b24;
  padding: 16px 0;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  background: #eaf5ec;
  margin-bottom: 6px;
  transition: background 0.22s, color 0.19s, transform 0.11s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #19A266;
  color: #fff;
  transform: scale(1.03);
}

@media (max-width: 1020px) {
  header nav {
    gap: 9px;
  }
  .cta-btn {padding: 11px 21px;font-size: 1rem;}
  header .container{gap:8px;}
}
@media (max-width: 900px) {
  header nav{display:none;}
  .cta-btn{margin-left:0;}
  .mobile-menu-toggle{
    display:inline-block;
  }
}
@media (max-width: 900px) {
  header .container{justify-content:space-between;}
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-close, .mobile-menu-toggle {display: none!important;}
}

/* ======================== HERO SECTIONS ======================== */
.hero {
  background: linear-gradient(120deg, #eaf5ec 55%, #dff1ed 100%);
  border-bottom-left-radius: 50px 18px;
  border-bottom-right-radius: 50px 18px;
  box-shadow: 0 8px 32px rgba(25, 162, 102, 0.12);
  padding-top: 40px;
  padding-bottom: 38px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}

/* ======================== FEATURE GRID ======================== */
.features {
  background: #fff;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 7px 28px rgba(25,162,102,0.05);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.feature {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #eaf5ec;
  border-radius: 17px;
  padding: 29px 24px 19px 24px;
  box-shadow: 0 2px 12px rgba(22, 89, 127, 0.06);
  gap: 8px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.feature:hover{
  box-shadow: 0 4px 22px rgba(25,162,102,0.14);
  transform: translateY(-4px) scale(1.015);
}
.feature img {
  width: 40px; height: 40px; margin-bottom: 14px; filter: drop-shadow(0 2px 7px rgba(25,162,102,0.09));
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: #f6faf7;
  border-radius: 36px;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: 0 2px 14px rgba(22, 89, 127, 0.07);
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: #19A266;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 5px 18px rgba(25,162,102,0.12);
  padding: 36px 20px;
  text-align: center;
  margin-top: 30px;
}
.cta-banner .content-wrapper{align-items: center;gap:16px;}
.cta-banner p{color: #fff;font-size:1.12rem;}
.cta-banner .cta-btn{background: #f4f7f9;color:#19A266; box-shadow:none;}
.cta-banner .cta-btn:hover{background: #155544;color:#f4f7f9;}

/* ===================== ABOUT PAGE/TEAM ===================== */
.about {
  background: #f8f9f7;
  border-radius: 28px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.team-member {
  background: #eaf5ec;
  border-radius: 12px;
  padding: 24px 20px 17px 20px;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 1px 8px rgba(22, 89, 127, 0.06);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.credentials ul{padding-left:16px;}

/* ===================== COMPANY HIGHLIGHTS & TIMELINE ===================== */
.company-highlights {
  background: #fff;
  border-radius: 20px;
}
.timeline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.timeline li {
  background: #eaf5ec;
  padding: 13px 17px;
  border-radius: 9px;
  font-size: 1rem;
  color: #16597F;
  flex: 0 1 180px;
  box-shadow: 0 1px 7px rgba(22, 89, 127, 0.06);
  margin-bottom: 8px;
}
.stats {
  font-size: 1.18rem;
  color: #1d2b23;
  font-weight: 600;
  margin-top: 4px;
}

/* ===================== COST CALCULATOR TEASER ===================== */
.calculator-teaser {
  background: #eaf5ec;
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(25,162,102,0.07);
  padding: 34px 16px 30px 16px;
  margin-top: 34px;
  margin-bottom: 47px;
  text-align: center;
}
.calculator-teaser .content-wrapper {align-items:center;}

.cost-calculator .text-section{
  background: #fff8ec;
  color: #694512;
  border-radius: 11px;
  font-size: 1rem;
  padding: 18px 14px 12px 18px;
  margin-top: 14px;
  box-shadow:0 1px 6px rgba(155,132,84,0.05);
  border-left: 5px solid #F2C062;
}

/* ==================== FAQ & INFORMATION SECTIONS ==================== */
.faq, .information {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 7px rgba(25,162,102,0.07);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 7px;
}
.faq-list li {
  background: #eaf5ec;
  color: #16597F;
  border-radius: 7px;
  padding: 15px 18px;
  font-size: 1rem;
}

/* ===================== FOOTER ===================== */
footer {
  background: #264b3a;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 22px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .footer-mini-nav a {
  color: #c2e2d0;
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-mini-nav a:hover {
  color: #fff;
}
.footer-mini-nav {margin-left: 12px;}
footer .cta-btn {background: #19A266;color:#fff;box-shadow:0 2px 12px rgba(25,162,102,0.13);padding:12px 20px;}
.footer-legal {margin-top: 20px; text-align:center; color:#9dbca7; font-size: 0.98rem;}

/* ===================== TEXT CONTENT/HELPER SECTIONS ===================== */
.text-section {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 7px rgba(25,162,102,0.07);
  padding: 32px 20px 10px 24px;
  margin-bottom: 32px;
}
.text-section h2, .text-section h1 {color: #16597F;}
.links .container {text-align: center;}
.links ul {display: flex;flex-wrap: wrap;gap: 16px;justify-content: center;}
.links a {color: #16597F;font-weight: 600;font-family: 'Montserrat', Arial, Helvetica, sans-serif;transition:color 0.18s;}
.links a:hover{color:#19A266;text-decoration:underline;}

/* ===================== CONTACT PAGE ===================== */
.contact-info {
  background: #eaf5ec;
  border-radius: 14px;
  box-shadow: 0 2px 9px rgba(25,162,102,0.08);
  padding: 22px 20px 18px 20px;
}
.map-placeholder {
  background: #eaf5ec;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #8a9b90;
  font-size: 1.08rem;
  font-style: italic;
  margin-top: 9px;
}

/* ===================== FORMS & INPUTS ===================== */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 9px;
  border-radius: 8px;
  border: 1.5px solid #bbd3c5;
  background: #f6faf7;
  color: #16597F;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: #19A266;
}
button {
  font-family: inherit;
}

/* ===================== COOKIES BANNER & MODAL ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -3px 16px rgba(25,162,102,0.13);
  border-top: 3px solid #19A266;
  z-index: 1100;
  padding: 22px 12px 14px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner__text {
  color: #16597F;
  font-size: 1.1rem;
  max-width: 660px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  padding: 11px 23px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 30px;
  font-size: 1.09rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(22, 89, 127, 0.07);
  margin-right: 5px;
  transition: background 0.18s, color 0.18s, transform 0.12s;
}
.cookie-btn.accept {
  background: #19A266;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff8ec;
  color: #694512;
  border: 2px solid #f2c062;
}
.cookie-btn.settings {
  background: #eaf5ec;
  color: #16597F;
}
.cookie-btn.accept:hover{
  background: #155544;
}
.cookie-btn.reject:hover{
  background: #ffe2b1;
  color: #7a5416;
}
.cookie-btn.settings:hover{
  background: #19A266;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,36,22,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(22, 89, 127, 0.15);
  max-width: 390px;
  width: 90vw;
  padding: 32px 22px 23px 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: none;
  background: none;
  font-size: 1.75rem;
  color: #16597F;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #eaf5ec;
  border-radius: 9px;
  padding: 13px 17px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: #19A266;
  width: 22px;
  height: 22px;
  margin-right: 3px;
}
.cookie-category.essential input[type=checkbox] {
  accent-color: #19A266;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #16597F;
}

/* Hide close/overlay button on essential-only modal */
@media (max-width: 600px) {
  .cookie-modal__content {padding: 22px 5vw 20px 5vw;}
}

/* ===================== ORGANIC/NATURE SHAPES & EFFECTS ===================== */
.hero, .section, .features, .about, .company-highlights, .calculator-teaser, .cta-banner, .information, .faq, .testimonials, .text-section, .contact-info, .cost-calculator, .services, .benefits, .case-highlight, .map {
  /* Subtle hand-drawn/random organic edge effect via border-radius */
}
.hero, .about, .features, .company-highlights, .calculator-teaser, .cta-banner, .information, .faq, .testimonials, .text-section, .cost-calculator, .services, .benefits, .case-highlight, .map {
  border-radius: 44px 18px 30px 24px/20px 38px 27px 33px;
}

.feature, .team-member, .testimonial-card, .faq-list li, .timeline li, .contact-info {
  border-radius: 18px 9px 18px 13px/14px 13px 14px 19px;
}

/* ===================== TRANSITIONS & HOVER EFFECTS ===================== */
.section, .features, .about, .company-highlights, .calculator-teaser, .cta-banner, .testimonials, .information, .faq, .text-section, .cost-calculator, .services, .benefits, .case-highlight, .map {
  transition: box-shadow 0.23s, background 0.38s;
}

.card, .feature, .team-member, .testimonial-card, .faq-list li, .timeline li, .cost-calculator .text-section, .contact-info {
  transition: box-shadow 0.2s, transform 0.13s;
}

a, .cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.16s, box-shadow 0.17s, border 0.1s, transform 0.11s;
}

/* ===================== RESPONSIVE ADJUSTMENTS ===================== */
@media (max-width: 1100px) {
  .footer-main {gap: 18px;}
  .feature-grid{gap:18px;}
  .team-list{gap:14px;}
}
@media (max-width: 970px) {
  .container{padding-left:10px;padding-right:10px;}
  h1{font-size:2rem;}
  h2{font-size:1.4rem;}
  .feature-grid {flex-direction: column;gap:16px;}
  .team-list{flex-direction:column;gap:10px;}
}
@media (max-width: 900px){
  .footer-main {flex-direction: column;align-items: flex-start;gap:14px;}
}
@media (max-width: 768px) {
  .container{padding-left:4vw; padding-right:4vw;}
  .section{margin-bottom:36px;padding:25px 7px;}
  .hero{padding-top:21px;padding-bottom:12px;border-radius:28px;}
  .cta-banner, .calculator-teaser, .features, .about, .company-highlights, .information, .faq, .testimonials, .text-section, .services, .benefits, .case-highlight, .map{
    border-radius: 22px 12px 19px 16px/12px 20px 14px 24px;
    padding-left: 7vw; padding-right:7vw; padding-top:19px;padding-bottom:14px;
  }
  .feature-grid, .content-grid, .team-list {
    flex-direction: column;
    gap: 16px;
  }
  .footer-main{flex-direction:column;gap:16px;}
  .footer-legal{margin-top:16px;}
  .cta-banner .content-wrapper{gap:10px;}
  h1{font-size:1.22rem;margin-bottom:14px;}
  h2{font-size:1.13rem;margin-bottom:11px;}
  p,li{font-size:0.98rem;}
  .testimonial-slider{flex-direction:column;gap:12px;}
  .team-list{gap:7px;}
  .faq-list li{font-size:0.97rem;padding:9px 10px;}
}

@media (max-width: 500px) {
  .mobile-nav a{font-size:1.06rem;}
  .cta-btn{padding:10px 12px;font-size:.97rem;}
  .testimonials,.features,.about,.company-highlights{padding-top:16px;padding-bottom:14px;}
}

/* ===================== Z-INDEX ===================== */
header{z-index:90;}
.mobile-menu{z-index:999;}
.cookie-banner{z-index:1100;}
.cookie-modal{z-index:1300;}

/* ======================== UTILS ======================== */
.gap-16{gap:16px!important;}
.mb-24{margin-bottom:24px!important;}
.rounded-16{border-radius:16px!important;}

/* =================== ORGANIC ACCENTS =================== */
.feature-grid, .team-list, .testimonial-slider, .card-container, .content-grid, .faq-list, .timeline ul {
  gap: 24px;
}
/* organic leaf accent for major headlines */
h1:before, h2:before {
  display: inline-block;
  content: '';
  width: 18px;
  height: 18px;
  background: #19A266;
  mask-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 62 62"><ellipse cx="31" cy="31" rx="24" ry="14" fill="white"/></svg>');
  mask-size: cover;
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 50%;
  margin-bottom:3px;
}
/* Do not show before pseudo on sub-headlines or where unneeded */
h3:before, h4:before{display:none;}

/* =================== CUSTOM FOCUS STATES =================== */
a:focus, .cta-btn:focus, button:focus, input:focus, .cookie-btn:focus {
  outline: 2.5px solid #19A266;
  outline-offset: 2px;
}

/* =================== ACCESSIBILITY FIXES =================== */
.testimonial-card {
  background: #fff; /* Ensure high contrast */
  color: #16597F;
}
.testimonials h2, .testimonial-card p, .testimonial-card span {
  color: #16597F;
}

/* ================== ORGANIC/NATURE TEXTURES ================== */
.section, .hero, .features, .about, .company-highlights, .testimonials, .text-section, .calculator-teaser, .cta-banner, .information, .faq {
  background-image: repeating-linear-gradient(112deg, #eaf5ec 0 2px, transparent 2px 42px), repeating-linear-gradient(283deg, #f4f7f9 0 1.15px, transparent 1.15px 32px);
  background-clip: padding-box;
}

/* =============== COLOR SCHEME UTILS FOR ORGANIC STYLE =============== */
.bg-earth { background: #f8f9f7; }
.bg-accent { background: #eaf5ec; }
.text-primary { color: #16597F; }
.text-secondary { color: #19A266; }
.text-muted { color: #557061; }

/* ================== VISUAL HIERARCHY ================ */
h1 {font-size: 2.4rem; margin-top: 6px;}
h2 {font-size: 1.55rem;}
h3 {font-size: 1.17rem;}
@media (max-width:600px) {
  h1 {font-size: 1.2rem;}
  h2 {font-size: 1.07rem;}
}

/* ================== SPACING (Always min 20px) ================ */
.section,.features,.about,.company-highlights,.testimonials,.faq,.information,.calculator-teaser,.cta-banner,.cost-calculator,.services,.benefits,.case-highlight,.contact-info,.text-section,.map, .links {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .testimonial-slider, .feature-grid, .team-list, .faq-list, .timeline ul, .feature-item { gap: 20px; }
.card, .feature, .team-member, .testimonial-card, .faq-list li { margin-bottom: 20px; }

/* No elements overlap, enforced with full box-sizing, margin, and gap */
/* No absolute positioning for content cards! */

/* ================== END OF STYLE ================== */