/*------------------------------------------------------
RESET & BASE STYLES
-------------------------------------------------------*/
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F3F2EE;
  color: #283225;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  letter-spacing: 0.01em;
  background-color: #F0EDEE;
}
a {
  color: #47643B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #233C1B;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 9px;
}
strong {
  font-weight: bold;
}
/*------------------------------------------------------
TYPOGRAPHY
-------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2D3748;
  font-weight: 700;
  line-height: 1.18;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #3B4146;
}
p {
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  color: #233C1B;
  background: #EEF2E6;
  padding: 16px 22px;
  border-left: 4px solid #6A8D63;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.tagline {
  color: #395D85;
  font-size: 1.09rem;
  margin-bottom: 16px;
  letter-spacing: .03em;
  font-family: 'Montserrat', Arial, sans-serif;
}
/*------------------------------------------------------
LAYOUT & CONTAINERS
-------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 30px;
  background: #fffdfa;
  box-shadow: 0 2px 10px rgba(101, 131, 70, 0.08);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}
.text-section {
  max-width: 690px;
}
.text-image-section {
  display: flex !important;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*------------------------------------------------------
NAVIGATION & HEADER
-------------------------------------------------------*/
header {
  background: #EFF3EB;
  box-shadow: 0 4px 18px -8px #bcd6aa56;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  height: 48px;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: 36px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #395D85;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 9px;
  transition: background 0.18s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: #D6E2D1;
  color: #283225;
}
.cta-button {
  margin-left: auto;
  background: #47643B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 12px 24px;
  border-radius: 50px 20px 50px 20px/18px 32px 20px 32px;
  box-shadow: 0 2px 7px #7e965665;
  letter-spacing: 0.06em;
  border: 0;
  cursor: pointer;
  transition: box-shadow .18s, background .16s, color .2s;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:active {
  background: #395D85;
  color: #fff;
  box-shadow: 0 6px 22px #9dc1b3b3;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #47643B;
  margin-left: 16px;
  cursor: pointer;
  outline: none;
}
@media (max-width: 1020px) {
  header .container { flex-wrap: wrap; }
  .main-nav { gap: 10px; margin-left:16px; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: auto;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/*-------------------------------
Mobile Menu Overlay
-------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(245,248,237, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.83,.01,.33,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.6rem;
  background: none;
  border: none;
  color: #47643B;
  cursor: pointer;
  margin: 28px 28px 0 0;
  transition: color .18s;
  align-self: flex-end;
}
.mobile-menu-close:hover {
  color: #395D85;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 45px 34px 0 0;
  align-items: flex-end;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #395D85;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 27px 11px 16px;
  border-radius: 20px 60px 20px 60px/30px 22px 22px 30px;
  transition: background 0.16s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  background: #D6E2D1;
  color: #233C1B;
  text-decoration: none;
}
@media (max-width: 768px) {
  .mobile-menu-close { font-size: 2.1rem; margin: 24px 14px 0 0; }
  .mobile-nav { margin: 20px 10px 0 0; gap: 17px; }
}

/*------------------------------------------------------
CARDS, GRIDS, FLEXBOX PATTERNS
-------------------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f8f8f4;
  border-radius: 18px;
  box-shadow: 0 3px 14px #b3c7b552;
  transition: box-shadow .18s, transform .16s;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  transform: translateY(-3px) scale(1.014);
  box-shadow: 0 8px 25px #b3c7b578;
}
.content-grid,
.team-grid,
.usp-grid,
.project-categories,
.feature-grid,
.icon-list,
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.feature-grid > div,
.usp-grid > div,
.project-categories > div,
.team-grid > div {
  background: #F9F7F3;
  border-radius: 21px 15px 15px 37px/33px 28px 21px 38px;
  box-shadow: 0 2px 10px #e1e9e2aa;
  flex: 1 1 230px;
  padding: 24px 22px 20px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 320px;
  gap: 7px;
  transition: box-shadow .13s, transform .13s;
}
.feature-grid > div:hover,
.usp-grid > div:hover,
.team-grid > div:hover {
  box-shadow: 0 8px 24px #c0d8c7b0;
  transform: translateY(-3px) scale(1.016);
}
@media (max-width: 970px) {
  .feature-grid > div,
  .usp-grid > div,
  .project-categories > div,
  .team-grid > div {
    flex: 1 1 48%;
    max-width: 100%;
  }
}
@media (max-width: 670px) {
  .feature-grid,
  .team-grid,
  .usp-grid,
  .project-categories,
  .content-grid,
  .icon-list,
  .icon-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.key-metrics {
  margin-top: 30px;
  font-weight: 500;
  color: #6A8D63;
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Icon List/Grid for values */
.icon-list, .icon-grid {
  gap: 20px;
}
.icon-list li, .icon-grid li {
  background: #F4F6F1;
  border-radius: 18px 8px 20px 40px/22px 23px 35px 26px;
  box-shadow: 0 2px 8px #eee5c3;
  padding: 20px 17px 18px 20px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 210px;
}
.icon-list img, .icon-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: grayscale(0.18) contrast(0.95) brightness(0.95);
}
.icon-grid li span { font-family: 'Montserrat', Arial, sans-serif; }

/* Features/Services List styled as flex (services.html) */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  margin-left: 0;
}
.services-list li {
  background: #FFF9F1;
  border-radius: 16px 42px 16px 32px / 23px 25px 18px 20px;
  box-shadow: 0 1.5px 7px #a0b5a7a1;
  padding: 18px 24px 18px 16px;
  flex: 1 1 270px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 25px;
}
.services-list li img {
  width: 34px;
  height: 34px;
  margin-top: 6px;
}
.services-list li div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .services-list { flex-direction: column; }
  .services-list li { flex: 1 1 100%; }
}

/*------------------------------------
Testimonials Section
-------------------------------------*/
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
  margin-top: 7px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F7F9F4;
  border-radius: 25px 17px 20px 35px/24px 30px 25px 24px;
  box-shadow: 0 2px 9px #b5cbb675;
  padding: 20px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 400px;
  margin-bottom: 20px;
  position: relative;
  color: #25321D;
  font-family: 'Lato', Arial, sans-serif;
  transition: box-shadow .17s, transform .12s;
}
.testimonial-card blockquote {
  background: none;
  border-left: 3px solid #47643B;
  color: #25321D;
  margin-bottom: 8px;
  padding: 0px 8px 0 17px;
  font-size: 1.02rem;
}
.testimonial-card span {
  color: #58702e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px #a4bda575;
  transform: translateY(-2px) scale(1.012);
}
@media (max-width: 768px) {
  .testimonial-row {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 97vw;
    min-width: 0;
    padding: 16px 10px;
  }
}

/*------------------------------------------------------
MISCELLANEOUS LISTS & COMPONENTS
-------------------------------------------------------*/
.roles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 28px;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #395D85;
  font-size: 1.04rem;
  list-style: none;
}
.skills-matrix ul {
  margin-left: 0;
  margin-top: 10px;
  margin-bottom: 16px;
  list-style: disc inside;
}
.key-metrics {
  margin-top: 18px;
  color: #395D85;
}
.process-steps ol {
  margin: 0;
  margin-top: 14px;
  margin-bottom: 14px;
  padding-left: 18px;
  list-style: decimal inside;
}
dl, dt, dd {
  padding: 0;
}

/*------------------------------------
FOOTER
-------------------------------------*/
footer {
  background: #1E232A;
  padding: 0 0 18px 0;
  color: #fff;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 35px;
  margin-bottom: 15px;
  align-items: flex-start;
}
.footer-grid > div,
.footer-grid > nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
  max-width: 260px;
}
.footer-grid h4 {
  font-size: 1.07rem;
  color: #BCDDB1;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-grid img {
  max-height: 38px;
  margin-bottom: 6px;
  border-radius: 7px;
}
.footer-nav a {
  color: #DFEDDA;
  font-size: 0.99rem;
  font-weight: 500;
  margin-bottom: 2px;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A6CC85;
}
.footer-grid a {
  color: #BCDDB1;
  word-break: break-word;
  transition: color .15s;
}
.footer-grid a:hover {
  color: #CEDBDF;
}
footer p, footer span { color: #B8BBB6; }
footer .footer-grid > div:last-child a img {
  display: inline;
  vertical-align: middle;
  height: 28px;
  width: 28px;
  margin: 0 8px 0 0;
}
@media (max-width: 1020px) {
  .footer-grid {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media (max-width: 800px) {
  .footer-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-grid > div, .footer-grid > nav { max-width: 100vw; }
}

/*------------------------------------
BUTTONS & INTERACTIVE ELEMENTS
-------------------------------------*/
button, .cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}
button:focus, .cta-button:focus {
  outline: 2px solid #47643b85;
  outline-offset: 2px;
}

/*------------------------------------
COOKIE BANNER & COOKIE MODAL
-------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FCF9EF;
  color: #2B2F28;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 30px 24px 28px 24px;
  box-shadow: 0 0 18px -6px #8aae7498;
  border-radius: 24px 24px 0 0/30px 30px 0 0;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: auto;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-text {
  font-size: 1.08rem;
  color: #4a562b;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 25px;
  margin: 0;
  border-radius: 28px 39px 20px 24px/20px 24px 18px 21px;
  border: none;
  background: #47643B;
  color: #fff;
  transition: background 0.16s, color 0.2s, box-shadow .18s;
  font-size: 1rem;
  box-shadow: 0 2px 8px #a9cdb37e;
}
.cookie-btn.settings {
  background: #fff;
  color: #395D85;
  border: 1px solid #A6CC85;
  box-shadow: none;
  margin-left: 10px;
}
.cookie-btn.reject {
  background: #D6E2D1;
  color: #47643B;
  margin-left: 10px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #395D85;
  color: #fff;
  box-shadow: 0 8px 24px #b3cbb682;
}
.cookie-btn.settings:hover {
  background: #F7F7FB;
  color: #233C1B;
  border-color: #395D85;
}
.cookie-btn.reject:hover {
  background: #A8B78B;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 60%);
  background: #fffdfa;
  color: #222;
  z-index: 3100;
  border-radius: 30px;
  box-shadow: 0 7px 32px #b3cbb669;
  min-width: 380px;
  max-width: 98vw;
  max-height: 85vh;
  padding: 36px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s, transform .28s;
}
.cookie-modal.active {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h3 {
  font-size: 1.3rem;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #395D85;
  font-size: 2.1rem;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover { color: #47643B; }
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 11px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-size: 1rem;
  color: #4a562b;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 44px;
  height: 23px;
  background: #B6C8A8;
  border-radius: 15px;
  position: relative;
  transition: background 0.16s;
  margin-left: 10px;
  cursor: pointer;
  vertical-align: middle;
  border: 1px solid #A3B78B;
}
.cookie-toggle input { display: none; }
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 19px; height: 19px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px #a8b3825a;
  transition: left 0.16s, background 0.14s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 23px;
  background: #98C184;
}
.cookie-category .always-on {
  color: #888;
  font-size: .94em;
  font-family: 'Lato', Arial, sans-serif;
}
@media (max-width:560px) {
  .cookie-modal { min-width: 99vw; max-width:97vw; padding:24px 7vw; }
}

/*------------------------------------------------------
RESPONSIVE STYLES
-------------------------------------------------------*/
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
}
@media (max-width: 600px) {
  .container { padding-left: 8px; padding-right: 8px; }
  section { padding: 26px 3px; margin-bottom: 35px; }
}

/*------------------------------------------------------
ORGANIC SHAPES & NATURE TEXTURES
-------------------------------------------------------*/
section, .feature-grid > div, .testimonial-card, .footer-grid > div, .card, .services-list li, .icon-list li, .icon-grid li {
  /* Subtle organic border radius for nature/organic look */
  border-radius: 30px 20px 18px 38px/26px 36px 23px 30px;
  /* Subtle natural paper/linen texture overlay */
  background-blend-mode: multiply;
  background-repeat: repeat;
  /* Background textures are subtle, fallback to color */
}
section {
  background: #fffdfa url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="32" cy="6" rx="2" ry="1" fill="%23dce8cb"/><ellipse cx="10" cy="34" rx="5" ry="2" fill="%23f5eacb"/><ellipse cx="23" cy="23" rx="8" ry="7" fill="%23f4f8e2"/></svg>');
}
@media (min-width:900px) {
  section { background-size: 110px 130px; }
}

/*----------------------------------------------------*/
