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

a {
  color: inherit;
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  border: 0;
  display: block;
}

/* --- Brand Variables --- */
:root {
  --color-primary: #314F3A;
  --color-secondary: #A3896A;
  --color-accent: #F5F3EF;
  --color-bg: #FAF9F6;
  --color-success: #7B9A6A;
  --color-outline: #E3D8C9;
  --color-black: #21261D;
  --color-green-light: #DCE9DD;
  --color-shadow: rgba(49,79,58, 0.09);
  --color-shadow-card: rgba(110, 94, 70, .14);
  /* Font stacks & fallback */
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-bg);
  line-height: 1.75;
  min-height: 100vh;
}

/* --- Typography --- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -.5px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
  line-height: 1.2;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 12px;
  line-height: 1.3;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.75;
}

strong {
  color: var(--color-primary);
  font-weight: bold;
}

.text-center {
  text-align: center !important;
}

.subheadline {
  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 20px;
  font-family: var(--font-body);
  max-width: 560px;
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* --- Header & Navigation --- */
header {
  background: var(--color-accent);
  box-shadow: 0 4px 18px -7px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-flex {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 14px 0;
}
.logo-link img {
  height: 44px;
}

.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 4px;
  border-radius: 7px;
  position: relative;
  transition: background .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-green-light);
  color: var(--color-secondary);
}

.cta-btn {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.13rem;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  box-shadow: 0 2px 14px -5px var(--color-shadow-card);
  cursor: pointer;
  outline: none;
  margin-left: 14px;
  transition: background .18s, box-shadow .18s, color .18s, transform .16s;
  display: inline-block;
  letter-spacing: 0.01em;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 6px 28px -8px var(--color-shadow-card);
  transform: translateY(-2px) scale(1.03);
}

button, .button {
  font-family: var(--font-body);
  background: var(--color-secondary);
  color: #fff;
  border-radius: 20px;
  border: none;
  padding: 10px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: 0 2px 10px -6px var(--color-shadow);
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 7px 18px -7px var(--color-shadow-card);
}

/* --- Hamburger Menu Mobile --- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  font-size: 1.55rem;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  z-index: 90;
  transition: box-shadow .17s, background .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-secondary);
  box-shadow: 0 3px 9px -5px var(--color-shadow-card);
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: #fff;
  transform: translateX(-110vw);
  transition: transform .33s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-right: -14px;
  margin-bottom: 18px;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 19;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #fff;
  padding: 10px 2px;
  border-radius: 7px;
  font-family: var(--font-display);
  transition: background .17s, color .17s;
  letter-spacing: .03em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green-light);
  color: var(--color-primary);
}

@media (min-width: 1000px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 999px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(120deg, var(--color-green-light) 50%, var(--color-accent) 100%);
  border-radius: 0 0 40px 40px / 0 0 24px 24px;
  box-shadow: 0 13px 32px -18px var(--color-shadow-card);
  min-height: 320px;
  margin-bottom: 38px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 240px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0 24px 0;
  max-width: 680px;
}

/* Feature grid and lists */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 4px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 22px;
  padding: 13px 20px;
  box-shadow: 0 4px 17px -13px var(--color-shadow-card);
  font-size: 1rem;
  min-width: 230px;
  color: var(--color-primary);
  margin-bottom: 6px;
  position: relative;
}
.feature-grid img {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--color-green-light);
  box-shadow: 0 2px 7px -3px var(--color-shadow-card);
}

ul, ol {
  margin-left: 2px;
  margin-bottom: 14px;
  padding-left: 18px;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.65;
}
.text-section ul li {
  list-style-type: disc;
}
ol li {
  list-style-type: decimal;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-section {
  max-width: 770px;
}

/* --- Cards and Card Containers --- */
.card-container, .service-cards, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.card, .service-cards > div, .team-list > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px -10px var(--color-shadow-card);
  padding: 30px 22px 22px 22px;
  flex: 1 1 220px;
  min-width: 230px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .20s, transform .18s;
}
.card:hover, .service-cards > div:hover, .team-list > div:hover {
  box-shadow: 0 7px 32px -10px var(--color-shadow-card);
  transform: translateY(-3px) scale(1.02);
}

.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;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 5px 29px -15px var(--color-shadow-card);
  max-width: 440px;
  margin-bottom: 20px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card p {
  color: var(--color-black);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1rem;
  font-style: normal;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-details img {
  width: 23px;
  height: 23px;
  margin-right: 8px;
  vertical-align: middle;
  filter: grayscale(.6) brightness(0.8);
}
.contact-hint {
  margin-top: 0;
  color: var(--color-secondary);
}

.faq-search-info {
  background: var(--color-green-light);
  border-radius: 14px;
  padding: 17px 22px;
  color: var(--color-primary);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}

/* --- Footer --- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 16px 0;
  box-shadow: 0 -3px 28px -12px var(--color-shadow-card);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 5px 10px;
  border-radius: 7px;
  transition: background .18s, color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-green-light);
  color: var(--color-primary);
}
.footer-contact {
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  filter: grayscale(.5) brightness(1.4);
}

footer a {
  color: #fff;
  transition: color .16s;
}
footer a:hover, footer a:focus {
  color: var(--color-green-light);
}

/* --- Thank you page --- */
.thankyou .content-wrapper {
  background: #fff;
  padding: 38px 22px 42px 22px;
  border-radius: 24px;
  box-shadow: 0 4px 22px -12px var(--color-shadow-card);
  margin-top: 40px;
  margin-bottom: 40px;
}

/****************************************/
/* --- Cookie Consent Banner --- */
/****************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--color-green-light);
  box-shadow: 0 -2px 18px -6px var(--color-shadow-card);
  border-top: 2px solid var(--color-outline);
  z-index: 2010;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  padding: 24px 16px;
  transition: transform .37s;
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  color: var(--color-primary);
  max-width: 460px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: 0 2px 8px -5px var(--color-shadow-card);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .16s;
}
.cookie-btn.cookie-settings {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 500;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 6px 18px -10px var(--color-shadow-card);
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: var(--color-green-light);
  color: var(--color-primary);
}
.cookie-banner.hide {
  transform: translateY(120%);
}

/* --- Cookie Modal --- */
.cookie-modal-mask {
  position: fixed;
  z-index: 2040;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,38,29, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 34px 26px 28px 26px;
  max-width: 415px;
  box-shadow: 0 8px 33px -10px var(--color-shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPop .38s cubic-bezier(.43,1.48,.43,1) 1;
}
@keyframes modalPop {
  0% {opacity:0;transform:scale(.82) translateY(28px)}
  100% {opacity:1;transform:none}
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 15px;
  top: 17px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.7rem;
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cookie-toggle {
  width: 40px;
  height: 25px;
  border-radius: 15px;
  background: var(--color-green-light);
  border: 1.3px solid var(--color-secondary);
  position: relative;
  margin-right: 8px;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
}
.cookie-toggle[data-enabled="true"] {
  background: var(--color-success);
  border-color: var(--color-success);
}
.cookie-toggle-switch {
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s;
  box-shadow: 0 1.5px 6px -2px var(--color-shadow);
}
.cookie-toggle[data-enabled="true"] .cookie-toggle-switch {
  left: 18px;
}
.cookie-modal .cookie-btn-group {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

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

.text-section ul li strong {
  color: var(--color-secondary);
}

.card-grid { /* matches .card-container, synonym used for flex container */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
}

/* --- Responsive Spacing & Flex--- */
@media (max-width: 1200px) {
  .container {max-width: 990px;}
}
@media (max-width: 999px) {
  .container {max-width: 100%;}
  .footer-flex {gap: 20px; flex-wrap: wrap;}
}
@media (max-width: 768px) {
  h1, .h1 {font-size: 2rem;}
  h2, .h2 {font-size: 1.45rem;}
  .hero .container {min-height: unset;}
  .content-wrapper, .team-list, .service-cards, .testimonial-slider {
    flex-direction: column !important;
    gap: 14px;
  }
  .card-container, .card-grid {
    flex-direction: column;
    gap: 14px;
  }
  .section, section {
    padding: 32px 8px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card {max-width: 100vw;}
}
@media (max-width: 460px) {
  .container {padding-left: 6px; padding-right: 6px;}
  .section, section {padding: 18px 2px;}
}

/****************************************/
/* --- Organic Touches for Nature Look --- */
/****************************************/
.hero, .card, .testimonial-card, .service-cards > div, .team-list > div, .thankyou .content-wrapper {
  border-radius: 32px 44px 36px 22px/
                28px 32px 31px 30px;
}
.card, .service-cards > div, .testimonial-card, .thankyou .content-wrapper {
  border: 1.3px solid var(--color-outline);
  background-image: url('assets/patterns/natural-paper.png'), linear-gradient(111deg, #FFFFFF 85%, #F5F3EF 100%);
  background-size: 420px, cover;
  background-repeat: repeat, no-repeat;
}
.feature-grid li, .faq-search-info {
  background-image: url('assets/patterns/minor-fibers.png');
  background-size: 320px;
}

/* Add a tiny "bamboo" style left border to cta-banners */
.text-center .cta-btn {
  position: relative;
  left: 0;
}
.text-center .cta-btn:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: -17px; top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 40px;
  background: var(--color-secondary);
  border-radius: 10px;
  opacity: .17;
}

/* --- Animations & Hover States --- */
a, .cta-btn, .card, .testimonial-card, .service-cards > div, .footer-nav a {
  transition: box-shadow .18s, color .17s, background .18s, transform .13s;
}
.card:hover, .testimonial-card:hover, .service-cards > div:hover, .team-list > div:hover {
  box-shadow: 0 10px 36px -11px var(--color-shadow-card);
  background: #FFF8F4;
  transform: translateY(-3px) scale(1.03);
}

/****************************************/
/* --- Focus States for Accessibility --- */
/****************************************/
a:focus, .cta-btn:focus, button:focus, .cookie-btn:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1.5px;
  box-shadow: 0 0 0 3px var(--color-green-light) !important;
  z-index: 2;
}

/****************************************/
/* --- Details for FAQ Styles --- */
/****************************************/

section ul>li>h3 {
  margin-bottom: 4px;
  color: var(--color-secondary);
  font-size: 1.13rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 8px;
}

section ul>li>p {
  margin-bottom: 14px;
  color: var(--color-primary);
}

/****************************************/
/* --- Utility Classes (Spacing etc) --- */
/****************************************/
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.mb-2 {margin-bottom: 8px !important;}
.mb-6 {margin-bottom: 32px !important;}
.pt-2 {padding-top: 8px !important;}
.pb-2 {padding-bottom: 8px !important;}
.gap-1 {gap: 6px;}
.gap-2 {gap: 12px;}
.gap-3 {gap: 20px;}

/****************************************/
/* --- Ensure NO CSS Grid/Columns Used --- */
/****************************************/
/* NO display:grid nor column-* rules used! */