/* CSS 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 { box-sizing: border-box; font-size: 100%; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }

body {
  min-height: 100vh;
  background: #F5F3EC;
  color: #233E3B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: #386d3b; transition: color 0.2s; }
a:hover, a:focus { color: #233E5A; }

ul, ol { list-style: none; }
li { margin-bottom: 12px; }

/* --- BRAND/NATURE ORGANIC COLORS --- */
:root {
  --primary: #233E5A;
  --primary-dark: #142230;
  --secondary: #6A99B5;
  --accent: #F3B94D;
  --nature-green: #388a50;
  --nature-green-light: #e0efdc;
  --earth-brown: #A47149;
  --clay: #d7c7af;
  --offwhite: #F5F3EC;
  --nature-shadow: rgba(56,138,80,0.10);
  --border-light: #E2E7E5;
  --danger: #c84843;
  --dark-text: #233E3B;
  --nature-shadow-md: 0 6px 24px rgba(34,62,58,0.08);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: -0.01em;
}
h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; }
h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; font-weight: 500; }

p, ul, ol, li {
  color: var(--dark-text);
  font-size: 1rem;
  margin-bottom: 0.7em;
}
strong { font-weight: 700; }

/* --- LAYOUT & CONTAINMENT --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--nature-shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--offwhite);
  border-radius: 18px;
  box-shadow: 0 3px 12px var(--nature-shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow 0.20s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 24px rgba(34,62,90,0.13);
  transform: translateY(-3px) scale(1.025);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

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

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list > div {
  background: var(--nature-green-light);
  border-radius: 20px;
  box-shadow: 0 1px 6px var(--nature-shadow);
  padding: 24px 20px 28px 20px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border-light);
  transition: box-shadow 0.20s, transform 0.18s;
}
.service-list > div:hover {
  box-shadow: 0 10px 24px var(--nature-shadow);
  transform: translateY(-2px) scale(1.014);
}
.service-list h3, .service-list h2 { margin-bottom: 8px; font-size: 1.23rem; }
.service-list a {
  margin-top: auto;
  background: var(--primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  box-shadow: 0 1px 5px var(--nature-shadow);
  letter-spacing: 0.02em;
  display: inline-block;
}
.service-list a:hover, .service-list a:focus {
  background: var(--nature-green);
  color: #fff;
  box-shadow: 0 8px 20px var(--nature-shadow);
}

/***** HERO SECTION *****/
.hero {
  background: linear-gradient(120deg, #e0efdc 40%, #fff 110%);
  border-bottom-left-radius: 64px;
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.hero .container { padding-top: 40px; padding-bottom: 34px; }
.hero .content-wrapper {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  gap: 18px;
}
.hero h1 {
  color: var(--nature-green);
  font-size: 2.6rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 24px;
}

/***** BUTTON STYLES *****/
.btn-primary {
  display: inline-block;
  padding: 12px 38px;
  background: var(--nature-green);
  color: #fff;
  border-radius: 40px 25px 35px 50px / 45px 25px 35px 60px;
  box-shadow: 0 2px 10px var(--nature-shadow);
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  margin-top: 12px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 8px 20px var(--nature-shadow);
  transform: scale(1.035);
}

.btn-secondary {
  display: inline-block;
  padding: 10px 27px;
  background: var(--secondary);
  color: #fff;
  border-radius: 35px 20px 34px 38px / 40px 14px 24px 50px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  margin-top: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--accent);
}

/***** MAIN NAVIGATION (DESKTOP & MOBILE) *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 6px var(--nature-shadow);
  z-index: 1000;
  position: sticky;
  top: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 74px;
}
.main-nav .logo img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav ul li {
  margin-bottom: 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 16px;
  transition: background 0.17s, color 0.2s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: var(--nature-green-light);
  color: var(--nature-green);
}
.main-nav .btn-primary {
  margin-left: 22px;
  font-size: 1rem;
  padding: 9px 23px;
  border-radius: 30px 15px 35px 32px / 32px 12px 17px 37px;
}

/***** MOBILE BURGER MENU *****/
.mobile-menu-toggle {
  display: none;
  background: var(--nature-green);
  color: #fff;
  border: none;
  padding: 10px 17px;
  border-radius: 18px;
  font-size: 2rem;
  position: absolute;
  right: 24px;
  top: 14px;
  cursor: pointer;
  z-index: 1190;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover { background: var(--accent); color: var(--primary); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(56,138,80,0.96);
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(0.61,0.01,0.44,0.97);
  z-index: 1200;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 16px 20px 8px 20px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: var(--accent); }

.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 34px 0 34px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.12rem;
  background: transparent;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.10);
}

/**** Hide desktop nav, show mobile burger on mobile ****/
@media (max-width: 1020px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/***** TESTIMONIAL CARDS ******/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffdf6;
  border-radius: 20px 40px 36px 28px / 42px 38px 24px 44px;
  box-shadow: 0 4px 24px var(--nature-shadow);
  margin-bottom: 20px;
  border-left: 8px solid var(--nature-green);
  position: relative;
  max-width: 700px;
  color: var(--dark-text);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--earth-brown);
  font-style: italic;
}

/**** CARDS for BLOG, FAQ, ETC ****/
.blog-list, .faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.blog-list > div, .faq-list > div {
  background: var(--clay);
  padding: 18px 24px;
  border-radius: 16px 32px 30px 18px / 36px 14px 32px 22px;
  box-shadow: 0 2px 12px var(--nature-shadow);
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.18s, transform 0.15s;
}
.blog-list > div:hover,
.faq-list > div:hover {
  box-shadow: 0 9px 28px var(--nature-shadow);
  transform: scale(1.01) translateY(-2px);
}

/**** FEATURE LIST ****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/**** LISTS WITH ICONS ****/
ul li img {
  height: 28px;
  width: 28px;
  margin-right: 10px;
  vertical-align: middle;
}
ul li {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

/**** FOOTER ****/
footer {
  background: var(--nature-green);
  color: #fff;
  padding: 40px 0 28px 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
}
.contact-info {
  color: #F5F3EC;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.17s;
}
.contact-info a:hover { color: var(--accent); }
.brand-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.brand-credit img {
  height: 40px;
  width: auto;
}

/**** COOKIE BANNER and MODAL ****/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 2px solid var(--accent);
  box-shadow: 0 -2px 20px var(--nature-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 18px 18px;
  z-index: 2000;
  gap: 22px;
  animation: slideupIn 0.8s cubic-bezier(0.66,0,0.28,1.01);
}
@keyframes slideupIn {
  from { transform: translateY(140px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.01rem;
  margin-bottom: 8px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 118px;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 32px 18px 30px 24px / 24px 13px 25px 24px;
  border: none;
  cursor: pointer;
  transition: background .18s, color .17s;
}
.cookie-banner .accept {
  background: var(--nature-green);
  color: #fff;
}
.cookie-banner .accept:hover { background: var(--accent); color: var(--primary); }
.cookie-banner .reject {
  background: #ece1d7;
  color: var(--earth-brown);
}
.cookie-banner .reject:hover { background: var(--danger); color: #fff; }
.cookie-banner .settings {
  background: #fff;
  border: 2px solid var(--nature-green);
  color: var(--nature-green);
}
.cookie-banner .settings:hover { background: var(--nature-green-light); color: var(--primary); }

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,62,90,0.28);
  z-index: 2100;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein 0.16s;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 24px 36px 25px 36px;
  box-shadow: 0 8px 40px #B9DEB4;
  padding: 38px 28px 27px 28px;
  width: 100%;
  max-width: 440px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popup 0.21s cubic-bezier(0.43,0,0.21,1.0);
}
@keyframes popup {
  from { transform: scale(0.87) translateY(42px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 6px;
  color: var(--primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.01rem;
  color: var(--primary-dark);
  cursor: pointer;
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--nature-green);
  width: 19px; height: 19px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 19px;
  justify-content: flex-end;
  margin-top: 11px;
}
.cookie-modal .close {
  position: absolute;
  right: 25px; top: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1;
}

/**** UTILITY ****/
.tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--nature-green);
  margin-top: 12px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

/**** FORMS (if ever appear) ****/
input, textarea, select {
  background: #f5f3ec;
  border-radius: 10px;
  border: 1px solid var(--border-light);
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
  outline: none;
}

/**** RESPONSIVE (MOBILE-FIRST) ****/
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .content-wrapper,
  .section {
    padding: 28px 7px;
    margin-bottom: 46px;
    border-radius: 16px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
  .main-nav { padding: 0 10px; }
  .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-list > div {
    max-width: 98vw;
    min-width: unset;
    border-radius: 13px;
    padding: 17px 8px 20px 11px;
  }
  .testimonial-card { flex-direction: column; padding: 16px 8px; border-radius: 15px; }
  .footer-nav {flex-direction: column; gap: 8px; margin-bottom: 9px;}
  .text-image-section { flex-direction: column; gap: 18px; }
  .card-container, .content-grid, .blog-list, .faq-list {
    flex-direction: column;
    gap: 14px;
  }
  .card { padding: 18px 9px; border-radius: 12px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.3rem; }
  .main-nav .logo img, .brand-credit img {
    height: 30px;
  }
  .container { padding: 0 3vw; }
}

/**** ORGANIC/NATURE MICRO-EFFECTS ****/
.card, .service-list > div, .testimonial-card, .blog-list > div, .faq-list > div {
  transition: box-shadow 0.17s, transform 0.15s, border-color 0.13s;
}
.card:active, .service-list > div:active, .testimonial-card:active {
  box-shadow: 0 2px 8px var(--nature-shadow);
  transform: scale(0.98);
}

/**** ORGANIC/DECORATIVE ELEMENTS - Optional leaves, blobs ****/
/* Add these as ::before/::after for sections if needed via extra classes */

/**** COLOR UTILITIES ****/
.bg-nature { background: var(--nature-green); color: #fff; }
.bg-earth { background: var(--earth-brown); color: #fff; }
.bg-light { background: var(--nature-green-light); color: var(--primary); }

/**** SPACING ****/
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; }

/**** TABLES (if any) ****/
table { width: 100%; border-spacing: 0; border-collapse: collapse; }
th, td { border-bottom: 1px solid #e7e6e2; padding: 12px 5px; text-align: left; }

thead { background: var(--nature-green-light); }
th { color: var(--primary); font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; }

/**** ACCESSIBILITY ****/
:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 1px;
}

/**** MODAL Z-INDEX ENSURE TOP LAYER ****/
.cookie-modal, .cookie-modal-overlay { z-index: 3000 !important; }

/**** HIDE/SHOW UTILS ****/
.hidden { display: none !important; }

/**** PRINT ****/
@media print {
  * { background: #fff !important; color: #000 !important; }
  nav, .footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
