/* ------------------ CSS RESET/BASE ------------------ */
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF7DC;
  color: #212121;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1b5e20;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B8860B;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.5px;
  color: #2C3914;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #34361b;
  margin-bottom: 12px;
}

blockquote {
  font-style: italic;
  color: #2e4d25;
  border-left: 4px solid #81b05b;
  padding-left: 18px;
  margin: 8px 0 8px 0;
  background: #f6f2ea;
}

/* ------------------ FLEX LAYOUTS ------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(247, 248, 243, 0.98);
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(165,174,133,0.08), 0 1.5px 6px rgba(83,53,12,0.09);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 12px #cddebc23;
  background: #fff;
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.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;
    gap: 22px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F8F2;
  border-radius: 22px;
  box-shadow: 0 2px 6px #b8c29b22;
  margin-bottom: 20px;
  border-left: 4px solid #93c05f;
}
.testimonial-card strong {
  color: #34601C;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list > div {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px #abbc9220;
  padding: 22px;
  margin-bottom: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-list > div:hover {
  box-shadow: 0 8px 28px #b2d39b38;
  transform: translateY(-2px) scale(1.025);
}

/* ------------------ HEADER & MAIN NAV ------------------ */
header {
  background: #ebf5e0;
  box-shadow: 0 2px 10px #768a4e1a;
  position: sticky;
  top: 0;
  z-index: 1050;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px 16px;
}
.site-logo img {
  height: 40px;
  border-radius: 10px;
  background: #f4e3c170;
  padding: 0 10px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  color: #386937;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B8860B;
  border-bottom: 2px solid #B8860B;
}
.cta-btn {
  background: #B8860B;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  border-radius: 999px;
  padding: 13px 38px;
  font-size: 1.1rem;
  box-shadow: 0 2.5px 10px #cfad4e24;
  transition: background 0.18s, transform 0.17s;
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #766227;
  transform: scale(1.04);
}

/* Hide mobile menu toggle by default (desktop mode) */
.mobile-menu-toggle {
  display: none;
  background: #B8860B;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  padding: 6px 16px 2px 16px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 2100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ad960f;
}

/* ------------- MOBILE NAVIGATION ------------ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #213118ee;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.7,0,.3,1);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #FFF7DC;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 30px 46px 6px 0;
  cursor: pointer;
  z-index: 3050;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B8860B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 34px;
  margin-left: 48px;
}
.mobile-nav a {
  color: #d2e0c7;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.29rem;
  padding: 8px 0;
  border-left: 5px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B8860B;
  border-left: 5px solid #B8860B;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .cta-btn { margin-left: 0; width: 100%; }
  header .container { flex-direction: row; gap: 14px; }
  .site-logo img { height: 33px; }
}

/* ------------------ HERO SECTION ------------------ */
.hero {
  background: linear-gradient(80deg, #f3eec5 65%, #e1f5ea 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 45px;
  min-height: 220px;
  box-shadow: 0 4px 25px 0 #ffd92f12;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .hero { border-radius: 0 0 18px 18px; min-height: 120px; }
}
.hero h1 {
  color: #466d14;
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1.12;
}
.hero p {
  color: #33481b;
  max-width: 510px;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* ------------------ FEATURES & LISTS ------------------ */
ul, ol {
  padding-left: 0;
  margin-bottom: 16px;
}
ul li,
ol li {
  margin-bottom: 8px;
  padding-left: 0;
  position: relative;
  line-height: 1.5;
}
ul li img {
  height: 1.2em;
  margin-right: 9px;
  vertical-align: -0.14em;
}

/* Edge list-icon */
ul li:before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 12px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: #a3bd6c66;
}
ul li img + * {
  margin-left: 0;
}
/* Remove bullet for icons-in-list */
ul li img {
  margin-left: -8px;
  margin-right: 6px;
}
ul li:has(img) {
  padding-left: 0;
}

/* ------------------ FOOTER ------------------ */
footer {
  background: #e1ecda;
  border-radius: 32px 32px 0 0;
  padding: 46px 0 12px 0;
  margin-top: 60px;
  box-shadow: 0 -4px 25px 0 #d1c34a24;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer .footer-nav a {
  color: #3d6c31;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  transition: color 0.17s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color: #B8860B;
}
footer .contact-info {
  font-size: .98rem;
  color: #3d392c;
  margin-top: 7px;
}
footer .social-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
footer .social-links img {
  width: 32px; height: 32px;
  filter: grayscale(0.17) brightness(0.97) contrast(1.08);
  transition: filter 0.16s, transform 0.16s;
}
footer .social-links img:hover, footer .social-links img:focus {
  filter: none;
  transform: scale(1.09) rotate(-6deg);
}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 25px; align-items: flex-start; }
  footer { border-radius: 22px 22px 0 0; }
}

/* ------------------ BUTTONS & INTERACTIVES ------------------ */
button, .cta-btn {
  cursor: pointer;
  text-align: center;
  outline: 0;
  user-select: none;
}
button:focus-visible, .cta-btn:focus-visible {
  box-shadow: 0 0 0 3px #b2e36a44;
}

/* Generic secondary button */
.btn-secondary {
  background: #fff;
  color: #5e6f3c;
  border: 2px solid #B8860B;
  padding: 12px 32px;
  border-radius: 20px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s, border 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffe29c;
  color: #333;
}

/* ------------------ FORMS (if any) ------------------ */
input[type="text"], input[type="email"], textarea {
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #d2eccc;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  margin-bottom: 18px;
  width: 100%;
  transition: border 0.17s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 2px solid #93c05f; /* green accent */
  outline: none;
}
label {
  font-family: 'Oswald', Arial, sans-serif;
  color: #264015;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 18px 4px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 14px;
  }
}

/* ------------------ COOKIE CONSENT BANNER ------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #ecf6de;
  color: #323a1d;
  padding: 23px 12px 27px 12px;
  box-shadow: 0 -3px 10px #939b3a21;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  transition: transform 0.37s cubic-bezier(.67,0,.29,1);
  transform: translateY(105%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner-content {
  max-width: 800px;
  text-align: center;
  margin-bottom: 16px;
  font-size: 1.04rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 22px;
}
.cookie-banner button {
  border-radius: 18px;
  border: none;
  padding: 11px 29px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1em;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 1.5px 7px #aaa83325;
  transition: background 0.16s, color 0.14s;
}
.cookie-banner .accept {
  background: #81b05b;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #618c35;
}
.cookie-banner .reject {
  background: #fff;
  color: #6a702b;
  border: 2px solid #B8860B;
  box-shadow: none;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffedc9;
}
.cookie-banner .settings {
  background: #b5b97a;
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #979a43;
}

/* ------------- COOKIE CONSENT MODAL ------------- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 5020;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #364617ba;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s cubic-bezier(.7,0,.3,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #233b13;
  border-radius: 22px;
  box-shadow: 0 4px 36px #b9d9a6b5;
  max-width: 390px;
  width: 94vw;
  padding: 42px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  opacity: 1;
  transform: translateY(30px) scale(0.98);
  transition: transform 0.26s cubic-bezier(.84,0,.24,1), opacity 0.21s cubic-bezier(.7,0,.3,1);
}
.cookie-modal-overlay.active .cookie-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cookie-modal-close {
  position: absolute;
  right: 21px;
  top: 11px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #B8860B;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #466a33;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1.03em;
}
.cookie-category input[type=checkbox] {
  width: 21px; height: 21px;
  accent-color: #93c05f;
}
.cookie-category.essential label {
  color: #4b6432;
  font-weight: 600;
}
.cookie-category.essential input[type=checkbox] {
  accent-color: #a3bd6c;
}
.cookie-category .label-desc {
  font-size: 0.94em;
  color: #68723b;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-actions button {
  padding: 8px 22px;
  border-radius: 14px;
  background: #B8860B;
  color: #fff;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.14s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #ad960f;
}

/* ------------------ ORGANIC/NATURE DESIGN MOTIFS ------------------ */
body, .section, .testimonial-card, .card, .cookie-modal, .hero, footer {
  /* Subtle organic background pattern or tint; fallback to color only */
  /* background-image: url('assets/organic-texture.png');  Uncomment if a texture/asset is available */
}
/* Emphasize organic shapes */
.section, .card, .testimonial-card, .cookie-modal, .hero, footer {
  border-radius: 22px 17px 28px 22px / 22px 32px 19px 26px;
}
.card, .testimonial-card, .cookie-modal {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px #b2d39b38;
  transform: translateY(-2px) scale(1.025);
}

/* Green leaf drop/shadow motif for hero */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  right: 3vw;
  top: 8vw;
  width: 128px;
  height: 80px;
  background: url('assets/leaf.svg') no-repeat center center/contain;
  opacity: 0.08;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 900px){ .hero::after{ width:70px; height:40px; top:11vw; right:7vw; } }

/* ------------- Utility Classes (Margin/Padding/Flex) ------------ */
.mt-32{margin-top:32px !important;}
.mb-32{margin-bottom:32px !important;}
.pt-24{padding-top:24px !important;}
.pb-24{padding-bottom:24px !important;}
.text-center{ text-align: center !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }

/* ------------- Accessibility: Focusable appearance ------------- */
:focus-visible {
  outline: 3px solid #93c05f;
  outline-offset: 2px;
  transition: outline 0.15s;
}

/* ------------- Misc ------------- */
.text-section {
  padding: 18px 10px 0 2px;
  max-width: 690px;
}

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

/********************** END OF STYLE **********************/