/* 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background-color: #f6f3ef;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #233221;
  min-height: 100vh;
  background: #f6f3ef;
  position: relative;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #15587A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #236e47;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  padding-left: 1em;
}

/* FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1b3221;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

p, li {
  font-size: 1rem;
  color: #233221;
  line-height: 1.7;
}
strong {
  color: #114032;
}

/* CONTAINER */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

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

/* HEADER & NAVIGATION */
header {
  background: #e8eae1;
  box-shadow: 0 2px 8px rgba(21, 88, 122, 0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #13453a;
  padding: 8px 14px;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #d3e3c3;
  color: #236e47;
}
.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #15587A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 26px;
  box-shadow: 0 4px 14px 0 rgba(43,102,58,0.08);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #236e47;
  color: #fbba18;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px 2px rgba(21,88,122,0.13);
  outline: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #15587A;
  color: #fff;
  border: none;
  border-radius: 20px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #236e47;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: #e8eae1;
  box-shadow: -3px 0 20px 0 rgba(30, 35, 10, 0.14);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
  gap: 36px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #15587A;
  font-size: 2.1rem;
  font-weight: bold;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 18px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #114032;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 8px;
  border-radius: 12px;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #b8cfb7;
  color: #236e47;
}

@media (max-width: 1100px) {
  header .container {
    gap: 10px;
  }
  nav.main-nav {
    gap: 12px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 940px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 850px) {
  nav.main-nav {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  header .container {
    flex-wrap: wrap;
    height: auto;
    padding: 14px 8px;
    gap: 10px;
  }
  nav.main-nav {
    display: none;
  }
  .cta-btn {
    padding: 11px 14px;
    font-size: 0.98rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  header .container {
    gap: 6px;
  }
  .logo img {
    height: 38px;
  }
  .cta-btn {
    font-size: 0.89rem;
    padding: 11px 10px;
  }
  .mobile-menu {
    width: 94vw;
    padding: 24px 8px 18px 8px;
  }
}

/* HERO SECTION */
.hero {
  background: #f3f9f5;
  background-image: url('assets/hero-pattern-leaf.svg');
  background-repeat: no-repeat;
  background-size: 460px 340px;
  background-position: right bottom;
  border-bottom-left-radius: 48px 48px;
  border-bottom-right-radius: 60px 44px;
  box-shadow: 0 8px 38px 0 rgba(79,109,45,0.13);
  position: relative;
  margin-bottom: 60px;
  padding: 40px 0 30px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  min-height: 370px;
}
.hero h1 {
  color: #164c33;
  font-size: 2.4rem;
}
.hero p {
  color: #205234;
  font-size: 1.13rem;
  max-width: 560px;
  margin: 0 0 28px 0;
}
.hero .cta-btn {
  margin-top: 16px;
}
@media (min-width: 880px) {
  .hero .container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-height: 395px;
  }
  .hero .content-wrapper {
    max-width: 670px;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 20px 0 10px 0;
    border-bottom-left-radius: 25px 25px;
    border-bottom-right-radius: 30px 20px;
    background-size: 60vw auto;
  }
  .hero h1 { font-size: 1.4rem; }
  .hero p { font-size: 1rem; }
}

/* MAIN SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 28px;
}
section:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  section {
    padding: 20px 4px;
    border-radius: 15px;
  }
}

/* FEATURE LISTS / ORGANIC ELEMENTS */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 10px 0;
  align-items: flex-start;
  list-style: none;
}
.features-list li {
  background: #e4efdd;
  border-radius: 20px 36px 8px 28px;
  box-shadow: 0 2px 13px rgba(41, 87, 51, 0.07);
  padding: 18px 24px 18px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.06rem;
}
.features-list img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 10px;
}
@media (max-width: 600px) {
  .features-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-list li {
    min-width: 0;
    font-size: 1rem;
    padding: 13px 12px 13px 13px;
  }
  .features-list img {
    width: 32px; height: 32px;
  }
}

/* CARDS & SERVICES */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 20px 40px 16px 32px;
  box-shadow: 0 2px 16px rgba(41, 87, 51, 0.07);
  padding: 28px 24px 24px 24px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  border-left: 5px solid #bcd857;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 30px 5px rgba(37,126,110,0.11);
  transform: translateY(-3px) scale(1.02);
  border-left: 8px solid #8dad36;
}
.card h2, .card h3 {
  color: #228062;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
}
.card p {
  color: #205234;
}
.card strong {
  color: #15587A;
}
@media (max-width: 720px) {
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: 0;
    padding: 18px 12px 18px 12px;
  }
}

/* NEWS, FAQ, HIGHLIGHT SECTIONS */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.news-item {
  background: #effae9;
  border-radius: 20px 8px 28px 36px;
  padding: 18px 22px;
  box-shadow: 0 2px 6px rgba(71, 122, 39, 0.06);
  margin-bottom: 4px;
}
.news-item h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.highlight {
  background: #e4efdd;
  border-radius: 14px 30px 22px 18px;
  padding: 18px;
  margin: 20px 0 0 0;
  font-weight: 600;
  font-size: 1.11rem;
  color: #205234;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.highlight .cta-btn {
  margin-left: 10px;
  font-size: 1rem;
  padding: 8px 22px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #e0ecce;
  padding: 15px 18px;
  border-radius: 18px 28px 10px 18px;
  box-shadow: 0 1px 3px rgba(30,48,19,0.06);
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 4px;
}
.faq-accordion h3 {
  margin-bottom: 4px;
  color: #206336;
  font-size: 1.12rem;
}
.faq-accordion > div > div {
  margin-top: 4px;
  font-size: 1rem;
  color: #204e25;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 28px 20px 32px 16px;
  box-shadow: 0 4px 18px 1.5px rgba(33, 60, 32, 0.09);
  margin-bottom: 24px;
  transition: box-shadow 0.18s, transform 0.14s;
  min-width: 220px;
  flex: 1 1 340px;
}
.testimonial-card:hover {
  box-shadow: 0 9px 30px 5px rgba(21,88,122,0.13);
  transform: translateY(-2.5px) scale(1.01);
}
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-style: italic;
  color: #228062;
  line-height: 1.7;
  margin-right: 18px;
}
.testimonial-meta {
  color: #407333;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: auto;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 14px;
  }
  .testimonial-meta {
    margin-left: 0;
  }
  .testimonial-card blockquote {
    font-size: 1.01rem;
    margin-right: 0;
  }
}

/* LISTS, PARAGRAPHS & TEXT SECTIONS */
.text-section {
  margin-bottom: 24px;
}
.text-section ul {
  margin: 8px 0 8px 0;
  padding-left: 12px;
  list-style: disc;
}
.text-section li {
  margin-bottom: 6px;
  font-size: 1rem;
}

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

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FOOTER */
footer {
  background: #e8eae1;
  border-top-left-radius: 60px 28px;
  border-top-right-radius: 44px 30px;
  box-shadow: 0 -2px 10px 0 rgba(44,72,32,0.05);
  padding: 42px 0 20px 0;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 8px 0 3px 0;
  justify-content: center;
}
.footer-nav a {
  color: #164c33;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 18px;
  transition: background 0.2s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #c6e2bc;
  color: #206336;
}
footer p {
  color: #607246;
  font-size: 0.97rem;
  text-align: center;
}
footer img {
  height: 56px;
  width: auto;
}
@media (max-width: 700px) {
  footer .container {
    gap: 16px;
    padding: 0 4vw;
  }
  .footer-nav {
    gap: 10px;
  }
  footer img {
    height: 36px;
  }
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 650px) {
  h1 {
    font-size: 1.36rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  h3 {
    font-size: 1rem;
  }
  .footer-nav a {
    font-size: 0.98rem;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #e4efdd;
  box-shadow: 0 -2px 16px rgba(44,72,32,0.13);
  border-top-left-radius: 38px 20px;
  border-top-right-radius: 34px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  gap: 20px;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.74,.04,.26,.97);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .cookie-text {
  color: #205234;
  font-size: 1rem;
  max-width: 540px;
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  background: #15587A;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  font-size: 1rem;
  padding: 9px 20px;
  margin: 0 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.cookie-btn.settings {
  background: #FBBA18;
  color: #15587A;
}
.cookie-btn.reject {
  background: #e16035;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #236e47;
  color: #fbba18;
  transform: translateY(-1px) scale(1.03);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #236e47;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c23917;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    padding: 14px 6px;
    gap: 13px;
  }
  .cookie-banner .cookie-text {
    font-size: 0.98rem;
    text-align: center;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-bg {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4000;
  background: rgba(21, 86, 44, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s cubic-bezier(.68,.04,.21,1);
}
.cookie-modal-bg.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #f6f3ef;
  padding: 36px 28px 28px 28px;
  border-radius: 32px 20px 38px 22px;
  box-shadow: 0 7px 36px 7px rgba(21,88,122,0.14);
  min-width: 320px;
  max-width: 94vw;
  z-index: 4010;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #205234;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #236e47;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #19703d;
  border-radius: 8px;
}
.cookie-category[aria-disabled="true"] input[type="checkbox"] {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal .actions {
  display: flex;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 18px;
  background: none;
  border: none;
  color: #15587A;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 17px 7px 16px 7px;
    min-width: 0;
    border-radius: 22px 18px 19px 9px;
  }
  .cookie-modal-close {
    right: 8px;
    top: 7px;
  }
}

/* ANIMATIONS */
@keyframes menu-slide-in {
  0% { transform: translateX(100%); }
  100% { transform: translateX(0); }
}
@keyframes menu-slide-out {
  0% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@keyframes cookie-popup-in {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes cookie-popup-out {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* UTILITY CLASSES & MISC */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 10px; background: #e4efdd;
}
::-webkit-scrollbar-thumb {
  background: #bcd857; border-radius: 8px;
}

/* END OF STYLE */
