/* 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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-color: #F6F3EE;
  color: #23455B;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; }
ul, ol { margin-left: 1.5em; }
li { margin-bottom: 8px; }
a { color: #23455B; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #236A3D; text-decoration: underline; }

/* Typography Hierarchy */
h1, .h1 { font-family: 'Montserrat', 'Arial', sans-serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; color: #23455B; }
h2, .h2 { font-family: 'Montserrat', 'Arial', sans-serif; font-size: 2rem; font-weight: 600; margin-bottom: 16px; color: #23455B; }
h3, .h3 { font-family: 'Montserrat', 'Arial', sans-serif; font-size: 1.5rem; font-weight: 500; margin-bottom: 10px; }
h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; }
p,
dd { font-size: 1rem; margin-bottom: 16px; }
strong { font-weight: 600; }

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 4px 16px 0 rgba(35, 69, 91, 0.10);
  /* Subtle organic border with slight irregularity via clip-path */
  clip-path: ellipse(98% 100% at 50% 50%);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(74, 101, 70, 0.07);
  transition: box-shadow .2s, transform .2s;
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #e6e0d2;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 28px rgba(35,69,91,0.13);
  transform: translateY(-6px) scale(1.015);
}

.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f4f8f2;
  border-radius: 20px;
  margin-bottom: 20px;
  border-left: 6px solid #236A3D;
  box-shadow: 0 2px 8px rgba(74, 101, 70,0.10);
  color: #23455B;
  font-size: 1.1rem;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
.testimonial-card span {
  font-size: 0.98rem;
  margin-left: auto;
  font-style: italic;
  color: #236A3D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px 0 rgba(35, 106, 61, 0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Header & Navigation */
header {
  background: #f7faf6;
  box-shadow: 0 2px 8px rgba(35,69,91,0.09);
  position: sticky;
  top: 0;
  z-index: 25;
  margin-bottom: 10px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 8px 18px;
  gap: 12px;
}
header img {
  height: 40px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-size: 1rem;
  color: #23455B;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
}
nav a.cta-primary {
  background: #236A3D;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  box-shadow: 0 1px 4px #74985718;
  margin-left: 12px;
  transition: background 0.2s, box-shadow 0.2s;
}
nav a.cta-primary:hover,
nav a.cta-primary:focus {
  background: #184E29;
  box-shadow: 0 2px 8px #236A3D22;
  color: #F6B328;
}
nav a:hover,
nav a:focus {
  background: #e7f4ec;
  color: #236A3D;
}

/* Mobile Menu */
.mobile-menu-toggle {
  appearance: none;
  border: none;
  outline: none;
  background: #236A3D;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  display: none;
  transition: background 0.2s;
  z-index: 51;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #184E29;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #e9e6dced;
  z-index: 50;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.4,1.2,.2,1);
  box-shadow: 2px 0 32px #74985722;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  outline: none;
  color: #23455B;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 16px 22px 10px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #184E29;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 24px 32px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #184E29;
  padding: 12px 12px;
  border-radius: 12px;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #236A3D23;
  color: #236A3D;
}

/* Hide desktop nav, show mobile menu toggle on Mobile */
@media (max-width: 1024px) {
  nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 1024px) {
  footer .footer-wrapper nav {display:none;}
}

/* Show desktop nav again on desktop */
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* Hero Section */
.hero {
  min-height: 320px;
  background: #e9e6dc;
  border-radius: 36px;
  box-shadow: 0 6px 28px #74985719;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  padding: 36px 0 36px 0;
}
.hero .container { flex-direction: row; justify-content: center; align-items: center; }
.hero .content-wrapper { align-items: flex-start; gap: 18px; }
.hero h1 {
  font-size: 2.6rem;
  color: #236A3D;
}
.hero p {
  color: #23455B;
  max-width: 480px;
  font-size: 1.22rem;
  margin-bottom: 10px;
}

/* Buttons */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  padding: 12px 36px;
  border-radius: 32px 38px 28px 40px / 36px 32px 44px 28px;
  cursor: pointer;
  border: none;
  outline: none;
  background: #236A3D;
  color: #fff;
  box-shadow: 0 2px 8px #33662118;
  transition: background 0.19s, color 0.19s;
  position: relative;
  letter-spacing: 1px;
  margin-top: 8px;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #184E29;
  color: #F6B328;
}
.cta-secondary {
  background: #F6B328;
  color: #23455B;
  box-shadow: 0 1px 6px #B7862059;
  margin-left: 0;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #FFA723;
  color: #fff;
}

/* Lists & Features (with icons) */
ul, ol { margin-bottom: 18px; }
ul li, ol li {
  padding-left: 2px;
  font-size: 1.08rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
ul li > img, ol li > img {
  margin-right: 6px;
  width: 1.3em;
  height: 1.3em;
  object-fit: contain;
  vertical-align: middle;
}

/* FAQ Section */
dl, dt, dd {
  margin: 0;
}
dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #236A3D;
  font-size: 1.1rem;
  margin-bottom: 2px;
  margin-top: 12px;
}
dd {
  font-size: 1rem;
  color: #23455B;
  margin-left: 16px;
}

/* Newsletter SignUp */
.newsletter-signup {
  background: #e9e6dc;
  color: #236A3D;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 22px 36px 28px 40px / 28px 44px 36px 22px;
  margin-top: 30px;
  margin-bottom: 8px;
  padding: 18px 24px;
  box-shadow: 0 1px 6px #64985718;
}

/* Footer */
footer {
  background: #23455B;
  color: #e9e6dc;
  border-radius: 30px 30px 0 0;
  margin-top: 62px;
  padding: 48px 0 24px 0;
  box-shadow: 0 -4px 28px rgba(44,74,60,0.10);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #e9e6dc;
  font-family: 'Montserrat', sans-serif;
  padding: 4px 9px;
  border-radius: 12px;
  font-size: 1rem;
  transition: background 0.17s, color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  background: #236A3D;
  color: #F6B328;
}
.contact-details {
  font-size: 0.99rem;
  color: #e9e6dc;
  opacity: 0.95;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-links a {
  display: flex;
  align-items: center;
  padding: 7px;
  background: #E9E6DC;
  border-radius: 50%;
  transition: background 0.17s;
}
.social-links a:hover, .social-links a:focus {
  background: #F6B328;
}
.social-links img {
  width: 28px; height: 28px; display: block;
}

/* Misc UI Elements */
.business-hours, .location-map {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ebe5d6;
  border-radius: 16px;
  padding: 14px 22px;
  margin: 10px 0 20px 0;
  color: #23455B;
  font-size: 1rem;
}

/* --- Cookie Consent Banner + Modal --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 99;
  background: #23455B;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 12px;
  font-size: 1.07rem;
  box-shadow: 0 -3px 32px #184e292f;
  transition: transform 0.32s cubic-bezier(.4,1,.6,1);
  border-radius: 14px 14px 0 0;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 24px;
  margin-top: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: #F6B328;
  color: #23455B;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px #B7902022;
}
.cookie-btn.accept { background: #236A3D; color: #fff; }
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #184E29;
  color: #F6B328;
}
.cookie-btn.settings { background: #fff; color: #236A3D; }
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E9E6DC;
  color: #23455B;
}
.cookie-btn.reject { background: #c85337; color: #FFF; }
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #70240e; }

.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #23455bb6;
}
.cookie-modal-backdrop.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #23455B;
  border-radius: 28px;
  max-width: 440px;
  padding: 36px 32px 24px;
  box-shadow: 0 10px 36px #23455B33;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiePop 0.36s cubic-bezier(.3,1.3,.4,1) 1;
  min-width: 320px;
}
@keyframes cookiePop {
  0% { transform: translateY(50px) scale(.94); opacity: 0; }
  70% { transform: translateY(-8px) scale(1.02); }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', sans-serif;
  color: #184E29;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  margin: 10px 0 14px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-switch {
  min-width: 38px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-modal-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal-slider {
  position: absolute;
  cursor: pointer;
  background: #e6e0d2;
  border-radius: 18px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
}
.cookie-modal-switch input:checked + .cookie-modal-slider {
  background: #236A3D;
}
.cookie-modal-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .16s;
}
.cookie-modal-switch input:checked + .cookie-modal-slider:before {
  transform: translateX(16px);
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  justify-content: flex-end;
}

/* Responsive Styles */
@media (max-width: 990px) {
  .container { padding: 0 10px; } 
  .section, .hero { padding-left: 10px; padding-right: 10px; }
  .footer-wrapper { gap: 20px; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 40px; padding: 22px 4px; border-radius: 18px; }
  .hero { padding: 16px 0 16px 0; border-radius: 20px; }
  .hero h1 { font-size: 2rem; }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.38rem; }
  .container { padding: 0 3vw; }
  .footer-wrapper { flex-direction: column; gap: 16px; }
  .newsletter-signup { font-size: 0.97rem; padding: 10px 12px; border-radius: 13px; }
  .testimonial-card { padding: 14px; font-size: 1rem; border-radius: 10px; }
  .content-grid, .card-container, .feature-item, .text-image-section {
     flex-direction: column !important;
     gap: 18px;
  }
  .business-hours, .location-map { padding: 8px 7px; font-size: 0.97rem; }
}
@media (max-width: 540px) {
  .newsletter-signup { font-size: 0.89rem; }
  .cookie-banner { flex-direction: column; gap: 16px; font-size: 0.98rem; padding: 14px 2px; }
  .cookie-modal { min-width: 93vw; padding: 18px 6vw 12px; }
  .hero, .section { padding: 8px 2vw; }
  .footer-wrapper { gap: 0px; }
}
/* Utility & Micro-animations */
.fade-in { animation: fadeIn 0.33s; }
@keyframes fadeIn { 0%{opacity:.16;} 100%{opacity:1;} }

/* Organic Card Borders */
.card, .section, .testimonial-card, .newsletter-signup {
  /* Fun, soft organic shape using border radius */
  border-radius: 34px 28px 40px 22px / 28px 40px 22px 34px;
}

/* Icon-button utility for accessibility */
.icon-btn {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
}
.icon-btn:focus, .icon-btn:hover {
  background: #E9E6DC;
}

/* Decorative nature-inspired background accents */
body:before {
  content: '';
  position: fixed;
  z-index: -1;
  right: -90px; bottom: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(ellipse 60% 80% at 78% 90%, #cfe3cc 0%, #e9e6dc 90%);
  filter: blur(16px);
  opacity: 0.7;
}
body:after {
  content: '';
  position: fixed;
  z-index: -1;
  left: -120px; top: -80px;
  width: 380px; height: 240px;
  background: radial-gradient(ellipse 80% 90% at 22% 8%, #b8d3b6 0%, #e9e6dc 90%);
  filter: blur(30px);
  opacity: 0.45;
}

/* Hide outline for mouse, keep for keyboard (for accessibility) */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px solid #F6B328; outline-offset: 3px; }

/* Accented h2 or section headings */
h2:after {
  content: '';
  display: block;
  width: 56px;
  height: 5px;
  background: #236A3D;
  border-radius: 3px;
  margin-top: 7px;
}

/* Extra Spacing for clarity */
.section + .section {
  margin-top: 20px;
}

/* Prevent Cards & Sections Overlap */
.card, .section, .content-wrapper, .testimonial-card {
  margin-bottom: 20px;
}

/* End CSS */
