/* CSS Reset & Normalize */
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-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #f6f6f2;
  color: #2B2D2A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  color: #46775e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1D3557;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23413D;
  margin-bottom: 16px;
  line-height: 1.18;
}

h1 { font-size: 2.375rem; margin-bottom: 20px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 11px; }
h4 { font-size: 1rem; margin-bottom: 10px; }

@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.35rem; }
}

p, ul, ol {
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 10px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 22px 0 rgba(44, 72, 50, 0.06);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* Header */
header {
  width: 100%;
  background: #f6f6f2;
  border-bottom: 2px solid #d4e9e2;
  padding: 20px 0 0 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header > a img {
  height: 44px;
  margin-bottom: 0;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin: 8px 0 0 0;
}

header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  color: #23413D;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  background: none;
  margin-right: 0;
}
header nav a.button-primary {
  margin-left: 10px;
}
header nav a:hover, header nav a:focus {
  background: #eff8ee;
  color: #1d6631;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 1.05rem;
  border-radius: 30px;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.16s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 3px 10px rgba(44,72,50, 0.07);
  margin: 10px 0 0 0;
  min-width: 170px;
}

.button-primary {
  background: #46775e;
  color: #F1FAEE;
  border: 2px solid #46775e;
}
.button-primary:hover, .button-primary:focus {
  background: #297252;
  color: #F1FAEE;
  box-shadow: 0 4px 13px 0 rgba(29,53,87,0.08);
}

.button-secondary {
  background: #F1FAEE;
  color: #46775e;
  border: 2px solid #46775e;
}
.button-secondary:hover, .button-secondary:focus {
  background: #A8DADC;
  color: #23413D;
  border-color: #1d3557;
  box-shadow: 0 4px 13px 0 rgba(29,53,87,0.09);
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #46775e;
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  margin-left: auto;
  margin-right: 8px;
  margin-top: 0;
  z-index: 101;
  cursor: pointer;
  transition: background 0.15s, color 0.2s;
  box-shadow: 0 2px 6px rgba(29,53,87,0.12);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #1d3557;
  color: #A8DADC;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #f6f6f2;
  z-index: 999;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 32px 4px rgba(62,109,78,0.13);
  transition: transform 0.33s cubic-bezier(.86,-0.27,.77,1.1), opacity 0.2s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #1d3557;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px; height: 48px;
  margin: 20px 25px 0 0;
  cursor: pointer;
  transition: background 0.1s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #46775e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 38px;
  align-items: flex-start;
  padding: 0 35px;
}
.mobile-nav a {
  color: #23413D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid #cddbc8;
  transition: background 0.14s;
  border-radius: 0 18px 18px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6f3ea;
  color: #297252;
}
@media (max-width:900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width:901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}

/* Hero section */
.hero {
  background: linear-gradient(120deg, #c7e6c7 50%, #f6f6f2 100%);
  border-radius: 0 0 65px 65px / 0 0 38px 38px;
  box-shadow: 0 6px 24px 0 rgba(116,180,120,0.11);
  margin-bottom: 45px;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 55px 0 30px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: #23413D;
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero p {
  color: #497152;
  font-size: 1.075rem;
  margin-bottom: 20px;
  font-weight: 400;
}
@media (min-width: 821px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
    min-height: 350px;
  }
  .hero .container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.9rem;
  }
}

.features {
  background: #f2fbea;
  border-radius: 40px;
  box-shadow: 0 1px 12px 0 rgba(88,128,94,0.10);
  padding: 48px 0 48px 0;
  margin-bottom: 60px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
.features ul li, .features > .container > .content-wrapper > div > div, .feature-item {
  background: #fff;
  border-radius: 22px;
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  box-shadow: 0 3px 18px 0 rgba(71,119,94,0.10);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.19s, transform 0.18s;
  border: 1.5px solid #daf5e5;
  position: relative;
}
.features ul li:hover, .features > .container > .content-wrapper > div > div:hover {
  box-shadow: 0 12px 40px 0 rgba(107,155,101,0.16);
  transform: translateY(-4px) scale(1.02);
}
.features ul li img, .features > .container > .content-wrapper > div > div img {
  width: 44px; height: 44px; margin-bottom: 6px;
}
.features h3 {
  color: #46775e;
  font-size: 1.14rem;
  margin-bottom: 8px;
}
.features p {
  color: #567654;
  font-size: 0.97rem;
  font-weight: 400;
  margin-bottom: 0;
}

/* Card Containers & Patterned Flex */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(40,68,52,0.09);
  padding: 24px;
  min-width: 220px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonials {
  background: #eff8ee;
  border-radius: 38px;
  padding: 48px 0 48px 0;
  margin-bottom: 60px;
}
.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 15px 0 rgba(55,108,66,0.09);
  border-left: 6px solid #78b965;
  max-width: 720px;
  color: #1B3527;
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  transition: box-shadow 0.17s, transform 0.19s;
}
.testimonials .testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 36px 0 rgba(55,108,66,0.13);
  transform: translateY(-3px);
}
.testimonial-card span {
  color: #46775e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: auto;
}

.case-study-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(44, 72, 50, 0.07);
  border-bottom: 5px solid #a8dadc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-study-card h3 {
  margin-bottom: 6px;
  color: #1d3557;
}

.about, .about-identity {
  background: #ffffff;
  border-radius: 32px;
  padding: 38px 0 38px 0;
  margin-bottom: 50px;
  box-shadow: 0 3px 18px 0 rgba(144,174,141,0.08);
}
.contact, .contact-section, .cta, .confirmation {
  background: #f9fbf8;
  border-radius: 32px;
  margin-bottom: 60px;
  padding: 38px 0 38px 0;
  box-shadow: 0 2px 12px 0 rgba(109,155,101,0.07);
}
.map-embed {
  background: #ebf6ee;
  padding: 18px;
  border-radius: 18px;
  font-style: italic;
  color: #46775e;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Footer */
footer {
  background: #1D3557;
  color: #f1faee;
  width: 100%;
  margin-top: 40px;
  padding: 35px 0 10px 0;
  border-radius: 30px 30px 0 0 / 18px 18px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
}
footer a {
  color: #A8DADC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  margin-right: 10px;
  transition: color 0.1s, background 0.1s;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
footer nav a:hover,footer nav a:focus {
  color: #66c063;
  background: #24482521;
  border-radius: 8px;
}
footer .contact-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #c5f4ec;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
}
footer .contact-footer img {
  width: 18px; height: 18px; vertical-align: text-bottom; margin-right: 7px;
}
footer .social-links {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
footer .social-links a img {
  width: 32px; height: 32px; filter: grayscale(0.2) brightness(1.03);
  transition: filter 0.2s, transform 0.2s;
}
footer .social-links a:hover img, footer .social-links a:focus img {
  filter: grayscale(0) brightness(1.25);
  transform: scale(1.08) rotate(-6deg);
}

/* Legal/tiny text */
.legal {
  background: #f1faee;
  border-radius: 32px;
  padding: 36px 0;
  margin-bottom: 55px;
  box-shadow: 0 1px 12px 0 rgba(162,174,171,0.08);
}
.legal h1, .legal h2 {
  color: #2b4637;
}
.legal ul li {
  color: #3d5345;
  margin-bottom: 7px;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero, .features, .about, .about-identity, .testimonials, .contact, .cta, .confirmation, .legal, .contact-section {
    border-radius: 14px;
    padding: 25px 0;
  }
  .section {
    padding: 22px 5px;
    border-radius: 18px;
  }
  .content-wrapper {
    gap: 16px;
  }
  footer {
    padding: 15px 0 7px 0;
    border-radius: 12px 12px 0 0/6px 6px 0 0;
    font-size: .97rem;
  }
  footer .content-wrapper, footer .container {
    gap: 10px;
  }
}
@media (max-width: 700px) {
  .features ul,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features ul li, .features > .container > .content-wrapper > div > div, .feature-item, .card {
    min-width: 0;
    width: 100%;
    margin-bottom: 12px;
    padding: 16px 8px;
  }
  .case-study-card {
    padding: 14px 6px;
  }
  .hero h1 {
    font-size: 1.32rem;
  }
  .hero .container {
    align-items: flex-start;
  }
}

/* Micro-interactions & Animations */
.button-primary, .button-secondary {
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.19s;
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.97);
}

.features ul li:hover img, .features > .container > .content-wrapper > div > div:hover img {
  transform: rotate(-9deg) scale(1.07);
  transition: transform 0.18s;
}

.card:hover, .case-study-card:hover {
  box-shadow: 0 9px 40px 0 rgba(116,180,120,0.13);
  transform: translateY(-2px) scale(1.012);
}

/* Form and general element styling */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  outline: none;
  border: 1.6px solid #d6eedd;
  padding: 10px 12px;
  box-shadow: none;
  margin-bottom: 14px;
  background: #f5faf7;
  color: #222d29;
  transition: border-color .15s;
  width: 100%;
  max-width: 380px;
}
input:focus, textarea:focus, select:focus {
  border-color: #46775e;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  color: #23413D;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #305e3e;
  color: #f1faee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px 18px 24px 18px;
  z-index: 2000;
  box-shadow: 0 -5px 32px 0 rgba(38,60,49,0.18);
  font-size: 1rem;
  border-radius: 24px 24px 0 0 / 14px 14px 0 0;
  animation: cookieBannerIn 0.7s cubic-bezier(.62,-0.08,.64,1.08);
}
@keyframes cookieBannerIn {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.cookie-consent-banner button {
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 25px;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s;
}
.cookie-consent-banner .accept {
  background: #7dbb87;
  color: #fff;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #46775e;
  color: #f1faee;
}
.cookie-consent-banner .reject {
  background: #e8f4e3;
  color: #285736;
  border: 1.5px solid #7dbb87;
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: #a8dadc;
  color: #23413D;
}
.cookie-consent-banner .settings {
  background: #fff;
  color: #23413D;
  border: 1.5px solid #a8dadc;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #cddbc8;
  color: #23413D;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,52,46,0.52);
  z-index: 3000;
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #f2fbea;
  color: #23413D;
  border-radius: 20px;
  box-shadow: 0 6px 50px 0 rgba(33,66,53,0.25);
  padding: 35px 20px 26px 20px;
  min-width: 320px;
  max-width: 96vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookieModalIn 0.33s cubic-bezier(.75,-0.61,.69,1.15);
}
@keyframes cookieModalIn {
  from { transform: translateY(90px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 4px;
  color: #1d3557;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category label {
  flex: 1;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264c36;
  font-weight: 600;
  margin-left: 0;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  margin-left: 14px;
  min-width: 22px; min-height: 22px;
  accent-color: #78b965;
}
.cookie-modal .essential {
  opacity: 0.5;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 9px;
}
.cookie-modal .close-modal {
  margin-left: auto;
  background: #e5faf0;
  color: #46775e;
  border: none;
  border-radius: 22px;
  font-size: 1.12rem;
  padding: 6px 17px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #c7e6c7;
  color: #23413D;
}

/* Accessibility: focus styles */
a:focus, button:focus, input:focus, .button-primary:focus, .button-secondary:focus {
  outline: 2px solid #46775e;
  outline-offset: 2px;
  z-index: 10;
}

/* Organic curves and texture-inspired accents (emulating nature) */
.hero, .features, .about, .about-identity, .testimonials, .contact, .cta, .confirmation, .legal, .contact-section {
  background-image:
    repeating-linear-gradient(120deg, rgba(168,218,220,0.09) 0, rgba(168,218,220,0.09) 5px, transparent 5px, transparent 23px),
    repeating-radial-gradient(circle at 80% 10%, rgba(255,255,255,0.12) 1.5px, rgba(255,255,255,0.12) 4.5px, transparent 6.5px, transparent 13.5px);
}

@media (max-width:590px) {
  .hero, .features, .about, .about-identity, .testimonials, .contact, .cta, .confirmation, .legal, .contact-section {
    background-size: 200px 44px, 70px 28px;
  }
}

/* Hide visually on small screens for cleaner space */
@media (max-width:600px) {
  footer .contact-footer {
    font-size: 0.85rem;
  }
  .hero, .features, .about, .about-identity, .testimonials, .contact, .cta, .confirmation, .legal, .contact-section {
    padding-left: 2px; padding-right: 2px;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
  background: #f2fbea;
}
::-webkit-scrollbar-thumb {
  background: #cff1d5;
  border-radius: 20px;
}

/* Typography scale for consistent hierarchy */
.display-1 { font-size: 3rem; font-family:'Montserrat',Arial,sans-serif; font-weight:800; }
.display-2 { font-size: 2.25rem; font-family:'Montserrat',Arial,sans-serif; font-weight:800; }
.title-1 { font-size: 1.32rem; font-family:'Montserrat',Arial,sans-serif; font-weight:700; }
.text-lead { font-size: 1.125rem; }
.small { font-size: 0.92rem; }

/* Util Styles */
.mt-32 { margin-top:32px; }
.mt-16 { margin-top:16px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.pt-24 { padding-top:24px; }
.pb-24 { padding-bottom:24px; }
.text-center { text-align:center; }
.text-left { text-align:left; }
.text-right { text-align:right; }

/* Hide elements visually but accessible for a11y */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

