/* RESET & BASELINE - Mobile first, normalize & box-sizing */
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,
main, 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%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #30402b;
  background: #faf8f5;
  line-height: 1.6;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #24527a;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #16714e;
  outline: none;
}
ul, ol {
  margin-left: 1.25em;
  padding-left: 1em;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #13392a;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.section h2,
.features h2,
.cta h2, .hero h1 {
  color: #24527a;
}
p, li, td, th {
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  color: #377f44;
  margin-bottom: 20px;
}

/* BRAND COLORS */
:root {
  --primary: #24527a;
  --secondary: #faf8f5;
  --light: #ffffff;
  --accent: #16714e;
  --accent-light: #24a67a;
  --earth1: #E5E9ED;
  --earth2: #e9e6df;
  --earth3: #e8e3d3;
  --brown: #b08968;
  --beige: #f7f3ed;
}

/* CONTAINER & SECTION SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, .hero, .cta, .about-brand, .team-section, .confirmation-section, .contact-section, .services-section, .features, .testimonials, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 26px;
  box-shadow: 0 6px 32px 0 rgba(52,60,41,0.04);
}
.content-wrapper {  /* Section wrapper */
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* FLEX LAYOUT STRUCTURES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(44,44,44,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.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: #f1f8f5;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(52,60,41,0.07);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 430px;
  color: #193d23;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7f3ed;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 1px 10px 0 rgba(66,76,52,0.05);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 350px;
  font-size: 1rem;
}
.features-grid, .usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.usp-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #eff4f2;
  border-radius: 18px;
  margin-bottom: 12px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 1px 10px 0 rgba(34,64,51,0.05);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
}
.info-box {
  background: #e9e6df;
  border-left: 6px solid var(--accent);
  border-radius: 13px;
  padding: 20px 20px 16px 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px 0 rgba(66,76,52,0.06);
}

/* HERO Sections */
.hero {
  background: linear-gradient(120deg, #f5f8f6 70%, #d8edd1 100%);
  padding: 56px 20px 40px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 8px 32px 0 rgba(34,44,31,0.04);
  margin-bottom: 60px;
}
.hero h1 {
  font-size: 2.4rem;
}
.hero p {
  color: #355b2f;
  margin-bottom: 24px;
  font-size: 1.2rem;
}

/* CTA */
.cta {
  background: #e8f6e5;
  border-radius: 26px;
  text-align: center;
  box-shadow: 0 4px 22px 0 rgba(34,44,31,0.06);
}
.cta-btn {
  display: inline-block;
  margin-top: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px 0 rgba(34,144,79,0.09);
  cursor: pointer;
  transition: background 0.17s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #24a67a;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* HEADER/NAV */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(71,95,53,0.04);
  border-bottom: 1px solid #e3e5e0;
  position: relative;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
}
.logo img {
  height: 58px;
  margin-right: 16px;
  display: block;
}
.main-nav {
  display: none;
}
.main-nav a {
  color: #24527a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: color 0.16s, background 0.15s;
  padding: 7px 14px;
}
.main-nav a:last-child {
  margin-right: 0;
}
.main-nav .cta-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22,113,78,0.08);
  margin-left: 10px;
  margin-right: 0;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus { background: #24a67a; }
@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Mobile/Burger NAV */
.mobile-menu-toggle {
  font-size: 2.2rem;
  color: #24527a;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 9px;
  margin-left: 12px;
  z-index: 9999;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e8f6e5;
  color: #16714e;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(36,82,122,0.97);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.61,.01,.41,1.03);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  color: #fff;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 22px 24px 0 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #eaeaea;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 0 36px;
  width: 80vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 13px 12px;
  color: #fff;
  border-radius: 10px;
  transition: background 0.16s, color 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #24a67a;
  color: #fff;
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #e5e9ed;
  border-top: 1px solid #d7dfd4;
  padding: 38px 0 16px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #24527a;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.16s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #e8f6e5;
  color: var(--accent);
}
.footer-info {
  text-align: center;
  color: #6a726c;
  font-size: 0.99rem;
}

/* SERVICES TABLE */
.services-table {
  width: 100%;
  background: #f7f3ed;
  border-radius: 17px;
  margin-bottom: 30px;
  overflow: hidden;
  border-collapse: collapse;
  box-shadow: 0 2px 14px 0 rgba(52,60,41,0.06);
}
.services-table th, .services-table td {
  padding: 16px 12px;
  text-align: left;
}
.services-table th {
  background: #e8f6e5;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24527a;
  font-size: 1.07rem;
  font-weight: 600;
}
.services-table tr:not(:last-child) td {
  border-bottom: 1px solid #e0e4da;
}
.services-table td {
  color: #30402b;
  background: #f7f3ed;
}

/* BENEFITS LIST */
.benefits-list {
  margin-top: 20px;
  margin-bottom: 4px;
  list-style-type: "🌱 ";
  color: #2a4430;
}
.benefits-list li {
  margin-bottom: 6px;
  padding-left: 8px;
  font-size: 1.08rem;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card p {
  font-size: 1.12rem;
  font-style: italic;
  color: #276249;
}
.testimonial-card span {
  color: #6a726c;
  font-size: 0.95rem;
  margin-left: 12px;
}

/* CONTACT INFO */
.contact-info {
  margin-top: 20px;
  font-size: 1.02rem;
  background: #e9e6df;
  border-radius: 13px;
  padding: 22px 14px 16px 22px;
  box-shadow: 0 1px 10px 0 rgba(126,109,78,0.05);
}
.contact-info h2 {
  font-size: 1.17rem;
  margin-bottom: 8px;
  color: #16714e;
}
.contact-info p {
  margin-bottom: 14px;
  color: #24527a;
}
.contact-info a { color: #16714e; }

/* LEGAL PAGES */
.legal h1, .legal h2, .legal h3 {
  color: #24527a;
}
.legal ul {
  margin-left: 0.5em;
  margin-bottom: 12px;
}
.legal ul li {
  padding-left: 8px;
  margin-bottom: 6px;
}

/* BUTTONS */
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(36,82,122,0.06);
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
}
button:hover, button:focus, input[type="submit"]:hover, input[type="submit"]:focus{
  background: #24a67a;
  transform: translateY(-2px) scale(1.02);
}

/* SHOWCASE PRICES */
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16714e;
  background: #e3f2ec;
  border-radius: 13px;
  padding: 7px 18px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 6px;
  display: inline-block;
}

/* PROCESS STEPS */
.process-steps ol {
  margin-top: 5px;
  margin-bottom: 2px;
  color: #2a4430;
  padding-left: 1.3em;
  font-size: 1.03rem;
}
.process-steps li {
  margin-bottom: 6px;
}

/* Cards & 'organic/nature' motifs */
.card, .feature-item, .usp-item,
.testimonial-card, .info-box, .contact-info {
  /* Subtle leafy border effect with organic shape on bigger screens */
  border-radius: 18px 32px 20px 36px / 24px 18px 34px 19px;
  background-clip: padding-box;
  /* Purely visual, won't introduce overflow or break content */
}

/* IMAGES INSIDE CARDS/FEATURES */
.feature-item img, .usp-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 1px #e8e8e8);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .section, .cta, .about-brand, .team-section, .confirmation-section,
  .contact-section, .services-section, .features, .testimonials, .legal{
    padding: 30px 8px;
    margin-bottom: 36px;
    border-radius: 18px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .main-nav { display: none !important; }
}
@media (max-width: 768px) {
  .content-wrapper, .features-grid, .usp-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .features-grid .feature-item,
  .usp-grid .usp-item,
  .card-container .card {
    min-width: 200px;
    max-width: 100%;
  }
  .testimonial-card {
    min-width: 160px;
    max-width: 100%;
    flex-direction: column;
    gap: 12px;
  }
}

/* MICRO-INTERACTIONS */
.card, .feature-item, .usp-item, .info-box {
  transition: box-shadow 0.21s, transform 0.13s;
}
.card:hover, .feature-item:hover, .usp-item:hover, .info-box:hover {
  box-shadow: 0 6px 24px 0 rgba(34,113,78,0.10);
  transform: translateY(-4px) scale(1.02);
}

.cta-btn:active {
  background: #1d855e;
}

/* TABLET: allow side-by-side for content sections */
@media (min-width: 700px) and (max-width: 950px) {
  .features-grid,
  .usp-grid {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  background: #eceadb;
  color: #355b2f;
  padding: 22px 14px 20px 14px;
  box-shadow: 0 -2px 24px rgba(44,84,41,0.12);
  font-size: 1rem;
}
.cookie-consent-banner .cookie-text {
  max-width: 410px;
  margin-right: 30px;
  font-size: 0.98rem;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
  margin-right: 7px;
  margin-bottom: 2px;
}
.cookie-btn.accept {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #24a67a;
}
.cookie-btn.reject {
  background: #fff;
  color: #16714e;
  border: 1px solid #c9d9cc;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #eceadb;
  color: #193d23;
}
.cookie-btn.settings {
  background: #eee9dc;
  color: #25513e;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e3f2ec;
  color: #16714e;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 6vw 24px 6vw;
  }
  .cookie-consent-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 12px;
  }
}

/* COOKIE MODAL DIALOG */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 5500;
  left: 0; top: 0; right: 0; bottom: 0;
  align-items: center;
  justify-content: center;
  background: rgba(32,64,32,0.18);
  animation: fadeinModalBg 0.25s cubic-bezier(.65,.1,.57,.93);
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 4px 36px 0 rgba(36,82,122,0.19);
  padding: 32px 26px 22px 30px;
  min-width: 340px;
  max-width: 94vw;
  animation: slideUpModal 0.33s cubic-bezier(.65,.1,.47,1.07);
  position: relative;
}
.cookie-modal-dialog h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #16714e;
  margin-bottom: 16px;
}
.cookie-modal-dialog ul {
  margin-bottom: 15px;
  margin-left: 10px;
}
.cookie-modal-dialog li {
  color: #355b2f;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  color: #24527a;
}
.cookie-category input[type="checkbox"] {
  accent-color: #16714e;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  color: #24527a;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 7px;
  transition: background 0.12s, color 0.1s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #eef2ec;
  color: #16714e;
}
@media (max-width: 700px) {
  .cookie-modal-dialog {
    min-width: 0;
    width: 80vw;
    padding: 22px 5vw 12px 6vw;
  }
}
@keyframes fadeinModalBg {
  from { background: rgba(32,64,32,0); }
  to { background: rgba(32,64,32,0.18); }
}
@keyframes slideUpModal {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Misc. & Utility */
.section ul:not(.footer-nav):not(.benefits-list), .about-brand ul, .team-section ul, .services-section ul {
  margin-top: 8px;
  margin-bottom: 16px;
  color: #2a4430;
  list-style-type: disc;
}
.section li, .team-section ul li {
  margin-bottom: 6px;
  font-size: 1rem;
}
.text-section {
  margin-bottom: 16px;
}

/* Confirmation page */
.confirmation-section {
  background: #e8f6e5;
  border: 1px solid #e5e9ed;
  border-radius: 24px;
  text-align: center;
}
.confirmation-section ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #16714e;
  list-style-type: none;
  margin-left: 0;
}
.confirmation-section li::before {
  content: '✔️ ';
  color: #24527a;
}

/* Accessibility - highlight on focus */
a:focus, button:focus, .cta-btn:focus, input:focus {
  outline: 2px solid #24a67a;
  outline-offset: 2px;
}

/* Hide visually, not from screen readers */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Remove unwanted scroll & overlap */
body, html {
  overflow-x: hidden;
}

/* Prevent flex child overlapping explicitly */
.features-grid > *, .usp-grid > *, .card-container > *, .content-grid > * {
  min-width: 0;
}

/* --------- END CSS --------- */
