/* --- 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,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 {
  scroll-behavior: smooth;
  background: #F1EDE3;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F1EDE3;
  color: #223950;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #397351;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #223950;
  text-decoration: underline;
}
ul,ol {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* --- CUSTOM FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223950;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; }

p, ul li, ol li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  color: #223950;
  font-size: 1rem;
  margin-bottom: 16px;
}

.blockquote, blockquote {
  border-left: 4px solid #397351;
  padding-left: 20px;
  color: #375238;
  font-style: italic;
  background: #f7f4ee;
  margin-bottom: 16px;
  font-size: 1.06rem;
}

strong { font-weight: 700; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 28px 64px 36px 34px/40px 30px 48px 64px;
  box-shadow: 0 6px 32px rgba(107, 122, 72, 0.07);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* Responsive change for text-image */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F1EDE3;
  border-radius: 24px 52px 32px 40px/32px 40px 52px 24px;
  box-shadow: 0 2px 16px rgba(123,106,80, 0.08);
  padding: 28px 22px 24px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 330px;
  transition: box-shadow 0.2s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 26px rgba(60,100,45,0.15);
  transform: translateY(-4px) scale(1.02);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.testimonial-card {
  background: #fff;
  border-radius: 36px 20px 48px 32px/32px 38px 20px 44px;
  box-shadow: 0 2px 24px rgba(34,57,80, .13);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 260px;
  transition: box-shadow 0.18s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(55,114,76, 0.14);
  transform: translateY(-2px) scale(1.015);
}

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

/* Features/offer icons list */
.content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 12px 0;
}
.content-wrapper > ul > li {
  flex: 1 1 240px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f7f9f5;
  border-radius: 18px 28px 22px 24px;
  padding: 16px 18px;
  font-size: 1.01rem;
  color: #223950;
}
.content-wrapper > ul > li img {
  width: 30px; height: 30px; filter: grayscale(0.2) brightness(0.8);
}
/* Responsive feature list styles */
@media (max-width: 900px) {
  .content-wrapper > ul {
    gap: 12px;
  }
  .content-wrapper > ul > li {
    flex: 1 1 180px;
    font-size: 0.97rem;
    padding: 14px 12px;
  }
}
@media (max-width: 600px) {
  .content-wrapper > ul {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- CTA BUTTONS --- */
.cta-primary {
  display: inline-block;
  padding: 13px 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  background: #397351;
  color: #fff;
  border: none;
  border-radius: 40px 20px 38px 32px/36px 20px 42px 29px;
  box-shadow: 0 4px 20px rgba(55,114,76,0.12);
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.16s, transform 0.18s;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #223950;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(34,57,80,0.12);
}

.cta-secondary {
  display: inline-block;
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #BBD2CB;
  color: #223950;
  border: none;
  border-radius: 34px 18px 28px 16px/24px 18px 32px 18px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 7px rgba(187,210,203,0.14);
  transition: background 0.14s, color 0.13s, transform 0.14s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #397351;
  color: #fff;
  transform: scale(1.045);
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* --- HEADER & NAV --- */
header {
  background: #fff;
  box-shadow: 0 4px 22px rgba(120, 138, 98, 0.05);
  border-radius: 0 0 36px 36px/0 0 26px 26px;
  position: sticky;
  top:0;
  z-index: 1040;
  margin-bottom: 22px;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 16px;
  min-height: 74px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.01rem;
  padding: 8px 10px;
  border-radius: 22px;
  transition: background 0.13s, color 0.13s;
}
header nav a:hover, header nav a:focus {
  background: #BBD2CB;
  color: #223950;
  text-decoration: none;
}
header img {
  width: 170px;
  margin-right: 25px;
}

header .cta-primary {
  margin-left: 18px;
  margin-right: 12px;
}
header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 1000px) {
  header .container {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  header img {
    width: 120px;
    margin-right: 8px;
  }
  header nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .cta-primary {
    display: none;
  }
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: inline-flex;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: #397351;
    cursor: pointer;
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.13s;
    z-index: 1201;
  }
  header .mobile-menu-toggle:hover, header .mobile-menu-toggle:focus {
    background: #BBD2CB;
  }
}


/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #f9f8f4;
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 350px;
  height: 100vh;
  box-shadow: -6px 0 36px rgba(55, 114, 81, 0.14);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.37,.26,.16,1);
  z-index: 1200;
  padding: 32px 32px 32px 18px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.33s cubic-bezier(.37,.26,.16,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #397351;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 16px;
  line-height: 1;
  transition: background 0.14s;
  border-radius: 19px;
  padding: 3px 11px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #BBD2CB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  padding: 15px 10px;
  border-radius: 26px;
  color: #223950;
  background: #E2ECD9;
  text-align: left;
  transition: background 0.16s, color 0.15s;
  margin: 2px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #397351;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay effect for mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 1199;
  background: rgba(32, 53, 80, 0.1);
  animation: fadeIn 0.23s forwards;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block!important;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- MAIN --- */
main {
  min-height: 60vh;
  padding-bottom: 30px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}


/* --- FOOTER --- */
footer {
  background: #ECF2ED;
  color: #223950;
  padding: 40px 0 0 0;
  border-top-left-radius: 60px 44px;
  border-top-right-radius: 130px 44px;
  box-shadow: 0 -9px 38px rgba(56, 100, 70, 0.06);
  margin-top: 48px;
}
footer .container {
  flex-direction: column;
  gap: 26px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}
footer nav a {
  color: #387151;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: none;
  padding: 7px 8px;
  border-radius: 12px;
  transition: background 0.12s, color 0.12s;
}
footer nav a:hover, footer nav a:focus {
  background: #BBD2CB;
  color: #223950;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: #fff;
  border-radius: 22px 44px 20px 72px/40px 35px 40px 25px;
  box-shadow: 0 2px 18px rgba(34,71,50, 0.09);
  font-size: 1rem;
  padding: 20px 24px 22px 18px;
  align-items: flex-start;
}
.footer-contact img:first-child {
  width: 50px;
  margin-bottom: 6px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #223950;
}
.footer-contact img:not(:first-child) {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.brand-style {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #397351;
  opacity: 0.92;
  margin-top: 22px;
}
@media (max-width: 600px) {
  footer .footer-contact {
    padding: 13px 10px;
    font-size: 0.98rem;
  }
  .brand-style {
    text-align: center;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fdfcf8;
  color: #223950;
  box-shadow: 0 -3px 20px rgba(34,57,80,0.09);
  z-index: 1400;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 22px 34px;
  border-radius: 28px 28px 0 0/32px 32px 0 0;
  font-size: 1rem;
  transition: transform 0.33s;
  animation: cookieSlideIn 0.42s;
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  transition: transform 0.33s;
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 60%;
  max-width: 650px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border: none;
  border-radius: 18px 42px 20px 18px/18px 15px 22px 15px;
  box-shadow: 0 2px 10px rgba(55,114,81,0.09);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s;
  margin: 0 2px;
}
.cookie-consent-banner .accept {
  background: #397351;
  color: #fff;
}
.cookie-consent-banner .accept:hover,
.cookie-consent-banner .accept:focus {
  background: #223950;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: #223950;
  border: 1px solid #BBD2CB;
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus {
  background: #BBD2CB;
  color: #223950;
}
.cookie-consent-banner .settings {
  background: #BBD2CB;
  color: #223950;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: #397351;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 10px;
    font-size: 0.99rem;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 7px;
    justify-content: flex-start;
  }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 1500;
  background: rgba(34, 57, 80, 0.13);
  justify-content: center;
  align-items: center;
  transition: background 0.26s;
  animation: cookieModalIn 0.32s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 26px 40px 30px 40px/32px 28px 26px 40px;
  box-shadow: 0 2px 48px rgba(55,114,81,0.18);
  padding: 34px 28px 30px 28px;
  max-width: 420px;
  width: 92vw;
  color: #223950;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #397351;
  cursor: pointer;
  border-radius: 15px;
  transition: background 0.14s;
  padding: 3px 10px;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: #BBD2CB;
}
.cookie-modal h3 {
  font-size: 1.23rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal .cookie-category input[type=checkbox],
.cookie-modal .cookie-category input[type=radio] {
  accent-color: #397351;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  min-width: 90px;
}
/* Ensure accessibility for essential category */
.cookie-modal .cookie-category input[disabled] + span {
  opacity: 0.7;
}


/* ----- ORGANIC/NATURE STYLE ELEMENTS & EFFECTS ----- */
.section {
  background: #f8fbf5;
  border-radius: 28px 64px 36px 34px/40px 30px 48px 64px;
  box-shadow: 0 6px 32px rgba(107, 122, 72, 0.12);
}
.card, .testimonial-card {
  border-radius: 24px 52px 32px 40px/32px 40px 52px 24px;
  background: #F1EDE3;
  box-shadow: 0 4px 22px rgba(78,106,74,0.07);
}
.content-wrapper > ul > li {
  background: #E0EEE0;
  border-radius: 18px 28px 22px 24px/24px 18px 32px 18px;
}
h1,h2,h3,.cta-primary {
  color: #223950;
}

/* Typography for decorative style - leaf effect shape */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.07rem; }
}


/* --- RESPONSIVE LAYOUTS --- */
@media (max-width: 1000px) {
  .container {
    max-width: 100vw;
    padding: 0 9px;
  }
  .section {
    padding: 25px 9px;
  }
}
@media (max-width: 800px) {
  .card-container, .content-grid, .footer-contact, footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .footer-contact {
    padding: 9px;
    gap: 6px;
  }
}

/* White space between all elements, no overlap */
.section, .testimonial-card, .card, .feature-item, .text-section {
  margin-bottom: 20px;
}


/* --- INTERACTIVE ELEMENTS --- */
input, textarea {
  border: 1px solid #BBD2CB;
  border-radius: 16px;
  padding: 10px 16px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 16px;
  background: #fff;
  font-family: 'Roboto',Arial,sans-serif;
  color: #223950;
  transition: border-color 0.17s;
}
input:focus, textarea:focus {
  border-color: #397351;
  outline: none;
}

/* --- MISC: Tables and misc text --- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 26px;
}
th, td {
  padding: 14px 8px;
  border: 1px solid #BBD2CB;
}

hr {
  border: 0;
  border-top: 1px solid #BBD2CB;
  margin: 40px 0;
}


/* --- ACCESSIBILITY & VISUAL HIERARCHY --- */
:focus {
  outline: 2px dashed #397351;
  outline-offset: 2px;
}
::selection {
  background: #BBD2CB;
  color: #223950;
}

/* --- SPECIAL CLASSES FOR CASE STUDY PAGES ETC. --- */
.text-section h3 {
  color: #397351;
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.text-section p, .text-section ul li {
  color: #343524;
}
.text-section ul {
  list-style: disc inside;
  margin-bottom: 13px;
}
.text-section ul li {
  margin-bottom: 7px;
}


/* --- MICRO-ANIMATIONS --- */
.cta-primary, .cta-secondary, .mobile-nav a, .footer-contact, .testimonial-card {
  transition: box-shadow 0.17s, background 0.15s, color 0.15s, transform 0.16s;
}


/* --- SCROLLBAR CUSTOMIZATION (modern browsers) --- */
::-webkit-scrollbar {
  width: 11px;
  background: #F1EDE3;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb {
  background: #BBD2CB;
  border-radius: 30px;
}

/* --- END --- */
