/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2EFEA;
  color: #193452;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: inherit;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap');

body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  background-color: #F2EFEA;
  color: #193452;
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: 0.01em;
  color: #193452;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 900;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 700;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 700;
}
strong, b {
  font-weight: bold;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 18px;
}
.text-section p:last-child, .content-wrapper > p:last-child, .text-section ul:last-child {
  margin-bottom: 0;
}

/* COLOR PALETTE (earth tones, nature inspired) */
:root {
  --primary: #193452; /* Deep blue earth (brand) */
  --secondary: #378C6B; /* botanical green (brand accent) */
  --accent: #F2EFEA;    /* soft ecru sand (bg) */
  --neutral: #8d8373;  /* muted earth brown */
  --surface: #fffdf9;
  --focus: #C8D6B8;    /* pale green for focus */
  --danger: #B74E39;   /* earthy clay for reject/alerts */
  --shadow: 0 2px 12px 0 rgba(49,63,38,0.08);
  --radius-xl: 32px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 7px;
}

/* CONTAINER & FLEX UTILS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 820px) {
  .content-wrapper {
    gap: 32px;
  }
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
}

/* HEADER */
header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 109;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 82px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-size: 1rem;
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  transition: background 0.22s, color 0.22s;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.01em;
}
header nav a:hover,
header nav a:focus {
  color: var(--secondary);
  background: #eaf3ea;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 8px 0 rgba(55,140,107,0.11);
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  margin-left: 18px;
  letter-spacing: 0.02em;
}
.cta-button:hover,
.cta-button:focus {
  background: #226e56;
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-0.5deg);
  box-shadow: 0 6px 24px 0 rgba(55,140,107, 0.15);
}
header .mobile-menu-toggle {
  display: none;
}

/* MOBILE NAVIGATION */
@media (max-width: 900px) {
  header nav {display: none;}
  .cta-button {display: none;}
  header .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    width: 46px;
    height: 46px;
    color: var(--primary);
    background: var(--accent);
    border-radius: 999px;
    border: 2px solid #e0e1da;
    margin-left: auto;
    z-index: 112;
    transition: background 0.15s;
  }
  header .mobile-menu-toggle:hover,
  header .mobile-menu-toggle:focus {
    background: #e6f1ed;
    color: var(--secondary);
    border-color: var(--secondary);
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 52, 82, 0.87);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.43,1.51,.62,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.6rem;
  position: absolute;
  right: 32px;
  top: 26px;
  background: none;
  border: none;
  z-index: 123;
  cursor: pointer;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: var(--secondary);}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 82px;
  gap: 20px;
  width: 80vw;
  max-width: 360px;
  padding: 0px 40px;
}
.mobile-menu .mobile-nav a {
  color: #fff;
  background:rgba(55,140,107,0.07);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  padding: 12px 22px;
  transition: background 0.13s, color 0.13s;
  width: 100%;
  margin: 0 0 6px 0;
  letter-spacing: 0.01em;
  line-height: 1.22;
  outline: 2px solid transparent;
}
.mobile-menu .mobile-nav a:hover,
.mobile-menu .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
  outline: 2px solid #fff;
}

@media (max-width: 900px) {
  header .container {
    flex-wrap: nowrap;
  }
}

@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(92deg, #e5f6ee 40%, #F2EFEA 100%);
  padding: 62px 0 36px 0;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: 0 13px 30px 0 rgba(55,140,107,0.06);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 620px;
  gap: 24px;
}
.hero h1 {
  color: var(--primary);
}
.hero p {
  color: #2e4c3a;
  font-size: 1.13rem;
  margin-bottom: 0;
}
.hero .cta-button {
  margin-top: 8px;
}

/* FEATURES SECTION (nature-inspired card style) */
.features {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  gap: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: center;
}
.feature-grid li {
  background: #f6f8f3;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(49,63,38,0.06);
  padding: 28px 24px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #dde5dc;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  box-shadow: 0 6px 28px 0 rgba(55,140,107,0.13);
  transform: translateY(-3px) scale(1.022);
  border-color: var(--secondary);
}
.feature-grid img {
  width: 44px; height: 44px;
  margin-bottom: 7px;
  filter: drop-shadow(0 2px 6px rgba(55,140,107,0.07));
}
.feature-grid h3 {
  color: var(--secondary);
}

/* ABOUT PREVIEW, SERVICE PREVIEW, ETC. */
.about-preview, .services-preview, .newsletter {
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.about-preview .content-wrapper,
.services-preview .content-wrapper,
.newsletter .content-wrapper {
  gap: 24px;
}
.about-preview .text-section,
.services-preview .text-section,
.newsletter .text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1rem;
  color: #3c5134;
}
.about-preview a,
.services-preview a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.15s;
}
.about-preview a:hover,
.services-preview a:hover {
  color: #193452;
  text-decoration: none;
}

/* GENERIC CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 26px 18px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.15s;
  border: 1.5px solid #e3e3d7;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 7px 18px 0 rgba(55,140,107, 0.11);
  transform: translateY(-2px) scale(1.011);
  border-color: var(--secondary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

/* FLEX LAYOUT HELPERS */
.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; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fcfbf7;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(139, 148, 121, 0.08);
  margin-bottom: 20px;
  border-left: 6px solid var(--secondary);
  min-width: 180px;
  max-width: 430px;
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  color: #253035;
  font-size: 1.09rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 600px) {
  .testimonials .content-wrapper {
    flex-direction: column;
  }
}

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

/* CARD/POST GRIDS FOR BLOG ETC. */
.blog-post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  margin-top: 18px;
}
.blog-post-grid li {
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 370px;
  background: #f6f8f3;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(49,63,38,0.06);
  padding: 26px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.18s, transform 0.13s;
  border: 1.5px solid #dde5dc;
}
.blog-post-grid li:hover,
.blog-post-grid li:focus-within {
  box-shadow: 0 8px 23px 0 rgba(55,140,107, 0.13);
  transform: scale(1.016) translateY(-2px);
  border-color: var(--secondary);
}

/* TEAM SECTION CARDS */
.team ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team ul li {
  background: #f8faf5;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(41, 65, 38, 0.06);
  padding: 30px 22px;
  flex: 1 1 260px;
  max-width: 380px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 20px;
  border: 1.5px solid #dde5dc;
  transition: box-shadow 0.14s, transform 0.13s;
}
.team ul li:hover {
  box-shadow: 0 6px 15px 0 rgba(55,140,107, 0.13);
  transform: translateY(-2px) scale(1.011);
  border-color: var(--secondary);
}

/* GENERIC LISTS INSIDE TEXT SECTIONS */
.text-section ul, .text-section ol {
  margin: 12px 0 12px 20px;
  padding-left: 12px;
  color: #3c5134;
}
.text-section ul li, .text-section ol li{
  margin-bottom: 9px;
  line-height: 1.55;
  font-size: 1rem;
}
.text-section ol { list-style: decimal inside;}
.text-section ul {list-style: disc inside;}

/* MAP PLACEHOLDER/ICONS */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #e9efea;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  margin-top: 14px;
}
.map-placeholder img {
  filter: grayscale(0.2) sepia(0.1);
}

/* CONTACT SECTION ICONS */
.contact .text-section img {
  vertical-align: middle;
  margin-right: 7px;
  width: 20px;
  height: 20px;
  display: inline-block;
  filter: brightness(0.82) sepia(0.08) hue-rotate(72deg);
}

/* CTA STANDALONE SECTION */
.cta, .contact-cta {
  display: flex;
  align-items: center;
  background: linear-gradient(92deg, #e7f4ea 30%, #F2EFEA 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px 0 rgba(55,140,107,0.03);
  margin-bottom: 54px;
  padding: 40px 20px;
  justify-content: center;
}
.contact-cta .content-wrapper, .cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.contact-cta .cta-button {
  margin-top: 14px;
}

/* LEGAL AND INFO PAGES (for .legal etc.) */
.legal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  padding: 40px 20px;
  font-size: 1.13rem;
}
.legal h1, .legal h2 {
  margin-bottom: 18px;
}

/* FOOTER */
footer {
  background: #e7efea;
  color: #193452;
  padding: 18px 0 0 0;
  box-shadow: 0 -2px 22px 0 rgba(55,140,107,0.07);
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-brand img {
  width: 58px;
}
.footer-brand .text-section {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #38454b;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.99rem;
  font-weight: 600;
}
.footer-menu a {
  color: #37705E;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.15s, color 0.13s;
}
.footer-menu a:hover {
  background: #c7eacd;
  color: var(--primary);
}
.legal-notice {
  font-size: 0.92rem;
  color: #8d8373;
  margin: 12px 0 16px 0;
  width: 100%;
  text-align: center;
}

@media (min-width: 701px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
  }
  .footer-brand {margin-bottom: 0;}
  .footer-menu {margin-left: auto;}
}

/* THANK YOU PAGE */
.thankyou {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 50px 20px 50px 20px;
  text-align: center;
}
.thankyou .confirmation-message {
  color: #2b5936;
  font-size: 1.18rem;
  margin-bottom: 20px;
}
.thankyou .next-steps-info {
  margin-bottom: 22px;
  color: #656746;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 920px) {
  .container {
    max-width: 96vw;
    padding: 0 7vw;
  }
  .hero .container {
    padding: 0 8vw;
  }
}
@media (max-width: 600px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.3rem;}
  .section, .features, .about-preview, .services-preview, .newsletter, .legal {
    padding: 22px 7px;
    margin-bottom: 36px;
  }
  .feature-grid, .blog-post-grid, .team ul, .testimonials .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .funct-grid {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .container {padding: 0 2vw;}
  .hero .container {padding: 0 2vw;}
}

/* SPACING ENFORCEMENT (always min 20px between cards) */
.card-container > *, .content-grid > *, .feature-grid > *, .blog-post-grid > *, .team ul > *, .testimonials .content-wrapper > * {
  margin-bottom: 20px;
}
/* Remove duplicated last margin */
.card-container > *:last-child,
.content-grid > *:last-child,
.feature-grid > *:last-child,
.blog-post-grid > *:last-child,
.team ul > *:last-child,
.testimonials .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* FOCUS STATES */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  background: var(--focus);
}

/* MICRO ANIMATIONS */
.cta-button, .blog-post-grid li, .feature-grid li, .card, .team ul li, .testimonial-card {
  transition: box-shadow 0.20s, transform 0.15s, border-color 0.15s;
  will-change: transform, box-shadow;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 910;
  background: #f7fbe9;
  color: #163421;
  box-shadow: 0 -3px 22px 0 rgba(55,140,107,0.12);
  border-top: 2px solid var(--secondary);
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  padding: 20px 24px 24px 24px;
  font-size: 1rem;
  animation: fade-in-btm 0.33s;
}
.cookie-banner__message {
  flex: 1 1 340px;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner__button {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.11s;
}
.cookie-banner__button--accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner__button--accept:hover,
.cookie-banner__button--accept:focus {
  background: #1e613d;
}
.cookie-banner__button--settings {
  background: var(--focus);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-banner__button--settings:hover,
.cookie-banner__button--settings:focus {
  background: #d9f5e0;
}
.cookie-banner__button--reject {
  background: #ecd5d0;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.cookie-banner__button--reject:hover,
.cookie-banner__button--reject:focus {
  background: #e9936b;
  color: #fff;
  border-color: #a2340e;
}
@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.99rem;
    padding: 14px 4vw 16px 4vw;
  }
  .cookie-banner__actions {gap: 8px;}
}
@keyframes fade-in-btm {
  from {opacity: 0; transform: translateY(80px);}
  to {opacity: 1; transform: translateY(0);}
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38, 54, 36, 0.57);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-btm 0.27s;
}
.cookie-modal {
  background: #fffdf9;
  border-radius: var(--radius-lg);
  box-shadow: 0 7px 44px 0 rgba(55,140,107, 0.16);
  max-width: 390px;
  width: 85vw;
  padding: 38px 26px 22px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fade-in-btm 0.22s;
}
.cookie-modal h3 {
  margin-bottom: 9px;
  color: var(--secondary);
  font-family: 'Merriweather', Georgia, serif;
}
.cookie-modal__section {
  margin-bottom: 16px;
}
.cookie-modal__section:last-child {
  margin-bottom: 0;
}
.cookie-modal__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-modal__toggle input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 18px; height: 18px;
}
.cookie-modal__toggle--readonly input[type="checkbox"] {
  accent-color: var(--secondary);
}
.cookie-modal__category-description {
  font-size: 0.96rem;
  color: #485654;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal__button {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal__button--save {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal__button--save:hover,
.cookie-modal__button--save:focus {
  background: #1e613d;
}
.cookie-modal__button--cancel {
  background: #e9efea;
  color: var(--primary);
}
.cookie-modal__button--cancel:hover,
.cookie-modal__button--cancel:focus {
  background: #d6ebe0;
}
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 17px;
  color: var(--secondary);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal__close:hover {
  color: var(--primary);
}

/* FORMS (if such elements appear) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.2px solid #b6c3ad;
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  margin-bottom: 14px;
  background: #f3f6ef;
  color: #193452;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--secondary);
  border-color: var(--secondary);
  background: var(--focus);
}
label {
  display: block;
  margin-bottom: 6px;
  color: #2b5936;
  font-weight: 600;
}

/* ANIMATIONS & ORGANIC SHAPES */
/* (Subtle rounding, nature-inspired border radius, box-shadow for organic floating) */
.card, .about-preview, .services-preview, .newsletter, .team ul li, .testimonial-card, .blog-post-grid li, .feature-grid li {
  border-radius: 21px 12px 29px 15px/21px 25px 14px 29px;
}

/* ORGANIC DIVIDERS */
.section:not(:last-child)::after {
  content: '';
  display: block;
  margin: 44px auto 0 auto;
  width: 82px;
  height: 10px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 82 10" xmlns="http://www.w3.org/2000/svg"><path d="M1 9c21-7 59-7 80 0" stroke="%23378C6B" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.16;
}

/* UTILITY CLASSES */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-2 {margin-top: 16px !important;}
.mb-1 {margin-bottom: 8px !important;}
.mb-2 {margin-bottom: 16px !important;}
.mb-3 {margin-bottom: 24px !important;}
.mt-3 {margin-top: 24px !important;}

/* --- THEME SCHEMA ENFORCEMENT --- */
/* Earth tones, green accent, lots of white space and rounded shapes */
