/* ------------------------------------------------------
   NATURE_ORGANIC STYLE: RESET & CORE 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 { font-size: 16px; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #FAF7F1;
  color: #263318;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: #1CA9C9;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0A192F;
  text-decoration: underline;
}
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
input[type="text"] {
  padding: 10px 16px;
  border: 1px solid #ACC27B;
  border-radius: 24px;
  background: #F5F8EE;
  color: #31461C;
  margin-bottom: 20px;
  width: 100%;
  transition: border 0.2s;
}
input[type="text"]:focus {
  outline: none;
  border-color: #72CD91;
}

/* ------------------------------------------------------
   COLORS & ORGANIC THEME
---------------------------------------------------------*/
:root {
  --primary: #0A192F;
  --secondary: #1CA9C9;
  --accent: #FEE440;
  --earth-1: #E3DDC9;
  --earth-2: #A9A48A;
  --green-1: #72CD91;
  --green-2: #4A783B;
  --brown-1: #887056;
  --leaf: #31461C;
  --bg: #FAF7F1;
  --white: #fff;
  --black: #151311;
}

/* Useful color fallback */
body {
  background: var(--bg, #FAF7F1);
  color: var(--leaf, #263318);
}

/* ------------------------------------------------------
   CONTAINER, SECTIONS, SPACING
---------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 32px 32px 16px 16px;
  box-shadow: 0 4px 20px rgba(40, 60, 32, 0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  margin-bottom: 24px;
  background: rgba(167, 215, 143, 0.10);
  padding: 24px 20px;
  border-radius: 16px 20px 20px 16px;
  box-shadow: 0 2px 8px rgba(65, 70, 28, 0.04);
}

/* ------------------------------------------------------
   TYPOGRAPHY: FONT-FAMILIES, HEADINGS, PARAGRAPHS
---------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--green-2);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
  margin-bottom: 14px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
h4 { font-size: 1.25rem; }

p, ul, ol {
  color: var(--leaf);
  font-size: 1.06rem;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
}
ul {
  list-style: disc inside;
  padding-left: 0;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
}
.tagline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--green-2);
  font-weight: 500;
  font-size: 1.13rem;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.thank-you-message {
  font-size: 1.25rem;
  margin-bottom: 28px;
  color: var(--green-2);
}

/* ------------------------------------------------------
   BUTTONS & CTA STYLES
---------------------------------------------------------*/
.primary-cta, .secondary-cta, .cookie-banner-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 36px;
  border-radius: 28px 40px 20px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 8px rgba(16,24,8,0.07);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.14s;
}
.primary-cta {
  background: linear-gradient(90deg,#72CD91 60%,#A9A48A 100%);
  color: #151311;
  border: 2px solid var(--green-1);
  margin-top: 10px;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--accent);
  color: var(--leaf);
  box-shadow: 0 4px 18px rgba(88,144,95,0.17);
  transform: translateY(-2px) scale(1.04);
}
.secondary-cta {
  background: transparent;
  color: var(--green-2);
  border: 2px solid var(--green-2);
}
.secondary-cta:hover, .secondary-cta:focus {
  color: #151311;
  background: var(--earth-1);
  border-color: var(--brown-1);
  box-shadow: 0 2px 7px rgba(136,112,86,0.12);
}

/* ------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------*/
header {
  background: var(--earth-1, #E3DDC9);
  box-shadow: 0 2px 10px rgba(167,215,143,0.07);
  padding: 0;
  position: relative;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 44px;
  width: auto;
  border-radius: 10px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
nav a {
  color: var(--green-2);
  font-size: 1.04rem;
  border-radius: 20px;
  padding: 7px 18px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
nav a:hover, nav a.active {
  background: var(--green-1, #72CD91);
  color: var(--leaf);
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  background: var(--green-1);
  border: none;
  font-size: 2.3rem;
  color: var(--green-2);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 16px;
  transition: background 0.16s;
  cursor: pointer;
  z-index: 1002;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
@media(max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.primary-cta {
  margin-left: 24px;
}
@media(max-width: 980px) {
  .primary-cta {
    margin-left: 0;
  }
}

/* ------------------------------------------------------
  MOBILE MENU OVERLAY
---------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(239,236,220,0.97);
  backdrop-filter: blur(5px);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.16s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  padding-top: 34px;
  padding-bottom: 64px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: var(--green-2);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 18px;
  transition: background 0.15s;
  z-index: 1201;
  display: flex;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--leaf);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 68px 0 0 36px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--leaf, #263318);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 8px 12px 0;
  border-radius: 18px;
  transition: color 0.17s, background 0.16s;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--green-2);
  text-decoration: none;
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ------------------------------------------------------
   HERO SECTION
---------------------------------------------------------*/
.hero {
  background: linear-gradient(125deg, #E3DDC9 60%, #C5E1B6 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 44px rgba(30,90,50,0.10);
  margin-bottom: 60px;
  padding: 64px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  padding: 0 0 0 6px;
}
.hero h1 {
  color: var(--green-2);
  font-size: 2.7rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ------------------------------------------------------
   FLEXBOX LAYOUT UTILS
---------------------------------------------------------*/
.card-container, .card-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px 32px 16px 28px;
  box-shadow: 0 2px 13px rgba(65,118,59,0.07);
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 380px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(65, 118, 59, 0.17);
  transform: translateY(-2px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.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: #F6FAEF;
  border-left: 6px solid var(--green-1);
  border-radius: 16px 32px 20px 18px;
  box-shadow: 0 1px 7px rgba(50,80,35,0.07);
  margin-bottom: 24px;
  margin-top: 8px;
  transition: box-shadow 0.19s;
  position: relative;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #263318;
  margin-bottom: 1px;
}
.testimonial-meta {
  font-style: italic;
  font-size: 0.98rem;
  color: var(--green-2);
  margin-top: 10px;
}
.testimonial-card:hover {
  box-shadow: 0px 4px 22px rgba(114,205,145,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F7F5EF;
  padding: 20px 16px;
  border-radius: 12px 18px 18px 16px;
  box-shadow: 0 1px 4px rgba(44,60,25,0.03);
}
.service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
  margin-top: 10px;
}
.service-detail-list .text-section {
  min-width: 230px;
  flex: 1 1 280px;
  margin-bottom: 0;
}

/* ------------------------------------------------------
   FOOTER
---------------------------------------------------------*/
footer {
  background: linear-gradient(90deg,#E3DDC9 70%,#F5F8EE 100%);
  padding: 50px 0 28px 0;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 24px rgba(30,90,50,0.08);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}
.footer-menus nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menus a {
  color: var(--green-2);
  font-weight: 600;
  padding: 4px 0;
  font-size: 1.03rem;
  transition: color 0.14s;
}
.footer-menus a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.footer-contact p {
  font-size: 0.96rem;
  color: #37421e;
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  border-radius: 6px;
  background: #fafcff;
  padding: 2px;
  box-shadow: 0 1px 4px rgba(167, 215, 143, 0.06);
  transition: background 0.13s;
}
.footer-social a:hover img {
  background: var(--green-1);
}

/* ------------------------------------------------------
   RESPONSIVE MEDIA QUERIES
---------------------------------------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 980px;
    padding-left: 14px;
    padding-right: 14px;
  }
  .footer-social{
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .container, .footer .container {
    flex-direction: column;
    gap: 28px;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .section {
    padding: 28px 5px !important;
  }
  .footer-brand { margin-bottom: 12px; }
  .footer-contact,
  .footer-menus,
  .footer-social {
    margin-bottom: 13px;
  }
  .footer-social {
    gap: 12px;
    margin-bottom: 10px;
  }
  .hero {
    padding: 36px 0;
  }
}
@media (max-width: 700px) {
  .card-container, .card-grid, .content-grid, .features, .service-detail-list {
    flex-direction: column;
    gap: 20px;
    min-width: 0;
  }
  .card, .feature-item, .testimonial-card, .service-detail-list .text-section {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  .section { padding: 26px 3px; }
  footer { padding: 22px 0 16px 0; border-radius: 18px 18px 0 0; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-menu-toggle {
    top: 8px;
    right: 8px;
  }
}
@media (max-width: 440px) {
  .card, .feature-item, .testimonial-card {
    padding: 13px 7px;
    font-size: 0.96rem;
  }
}

/* ------------------------------------------------------
   COOKIE CONSENT BANNER & COOKIE MODAL
---------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FAF7F1;
  border-top: 3px solid var(--green-2);
  box-shadow: 0 -2px 16px rgba(65,118,59,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 44px 18px 24px;
  z-index: 1600;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  color: var(--green-2);
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 18px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner-btn {
  min-width: 116px;
  padding: 10px 18px;
  font-size: 1.01rem;
  border-radius: 16px 30px 14px 16px;
  border: none;
  font-weight: 600;
  background: var(--green-1);
  color: var(--black);
  transition: background 0.16s, color 0.13s, box-shadow 0.24s;
  margin-right: 0;
  margin-left: 0;
  box-shadow: 0 1px 4px rgba(65,118,59,0.10);
  cursor: pointer;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: var(--accent);
  color: var(--leaf);
}
.cookie-settings-btn {
  background: transparent;
  color: var(--green-2);
  border: 2px solid var(--green-2);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--earth-2);
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 7px 24px 7px;
  }
  .cookie-banner-message {
    margin-bottom: 12px;
    margin-right: 0;
  }
  .cookie-banner-actions {
    width: 100%;
    gap: 8px;
    flex-direction: column;
  }
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1700;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(40,70,32,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  min-width: 300px;
  max-width: 96vw;
  background: #fff;
  border-radius: 20px 40px 22px 16px;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 8px 44px rgba(114,205,145,0.24), 0 1.5px 2.5px rgba(50,80,35,0.03);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--green-2);
  font-size: 1.08rem;
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 42px; height: 22px;
  background: #E3DDC9;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-category .cookie-toggle:checked {
  background: var(--green-1);
}
.cookie-category .cookie-toggle:after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
  box-shadow: 0 1px 3px rgba(30, 90, 50, 0.10);
}
.cookie-category .cookie-toggle:checked:after {
  left: 23px;
}
.cookie-modal-categories {
  margin-bottom: 14px;
}
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--earth-1);
  color: var(--green-2);
  border: none;
  font-size: 1.4rem;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.cookie-modal-close:hover {
  background: var(--accent);
  color: var(--leaf);
}
@media (max-width: 540px) {
  .cookie-modal {
    min-width: 0;
    padding: 16px 8px 20px 8px;
  }
}

/* ------------------------------------------------------
   MICRO-INTERACTIONS/ANIMATION
---------------------------------------------------------*/
.primary-cta, .secondary-cta, .cookie-banner-btn, .cookie-modal-close {
  transition: background 0.18s, color 0.16s, box-shadow 0.2s, transform 0.15s;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover, .feature-item:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 24px rgba(65, 118, 59, 0.16);
}
nav a:after {
  content: '';
  display: block;
  margin: auto;
  height: 2.5px;
  width: 0px;
  background: var(--green-1);
  border-radius: 99px;
  transition: width 0.19s;
}
nav a:hover:after {
  width: 60%;
}
@media(max-width: 980px){
  nav a:after{display:none;}
}

/* ------------------------------------------------------
   GENERAL FLEX LAYOUTS FROM REQUIREMENTS
---------------------------------------------------------*/
.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; }

/* ------------------------------------------------------
   MISC/UTILITY
---------------------------------------------------------*/
::-webkit-scrollbar {
  width: 9px;
  background: #F7F5EF;
}
::-webkit-scrollbar-thumb {
  background: #A9A48A;
  border-radius: 12px;
}

/* Hide mobile-menu if JS fails: progressive enhancement */
.mobile-menu { display: none; }

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