/* =========================================================
    CSS RESET & NORMALIZATION  
========================================================= */
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;
}
h1, h2, h3, h4, h5, h6 {font-weight: 700;}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  color: #2C2B29;
  background: #F4F8FB;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {box-sizing: inherit;}
a {color: inherit; text-decoration: none; transition: color 0.2s;}
ul, ol {list-style: none;}
img {max-width: 100%; height: auto; display: block; border: 0;}
button, input, select, textarea {font-family: inherit;}

/* =========================================================
    BRAND COLOR PALETTE & NATURE ORGANIC CUSTOMIZATION
========================================================= */
:root {
  --color-primary: #183152;
  --color-secondary: #00A6C8;
  --color-accent: #F4F8FB;
  --color-green1: #238658;
  --color-green2: #C0D6C3;
  --color-brown1: #9C8862;
  --color-brown2: #ded6ca;
  --color-earth-bg: #F7FAF8;
  --color-earth-shadow: rgba(70,100,70,0.13);
  --color-text-main: #2C2B29;
  --color-text-dark: #183152;
  --color-text-light: #fff;
  --color-border-light: #E3E9E4;
  --color-shadow: 0 2px 12px 0 rgba(35, 134, 88, 0.06);
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--color-earth-bg);
  color: var(--color-text-main);
}
h1, .hero h1, .about-hero h1, .services-hero h1, .workshop-hero h1, .testimonials-hero h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: var(--color-green1);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h1, .hero h1, .about-hero h1, .services-hero h1, .workshop-hero h1, .testimonials-hero h1 {
    font-size: 2rem;
  }
}
h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem; /* 32px */
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem; /* 22px */
  font-weight: 500;
  color: var(--color-green1);
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 600;
}
p, li {
  font-size: 1rem;
  color: var(--color-text-main);
  margin-bottom: 12px;
}
strong {font-weight: bold;}
.subheadline {
  font-size: 1.17rem;
  letter-spacing: 0;
  color: var(--color-primary);
  margin-bottom: 22px;
}

/* =========================================================
    GENERAL SPACING & FLEX LAYOUTS
========================================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-accent);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(35, 134, 88, 0.13);
}
.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: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(33,60,54,0.08);
  border: 1px solid #e7efe3;
  min-width: 260px;
  max-width: 400px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6FAF2;
  border-radius: 16px;
  padding: 24px 16px;
  border: 1px solid #E3E9E4;
  box-shadow: 0 2px 7px 0 rgba(35, 134, 88, 0.04);
  min-width: 220px;
  max-width: 300px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 42px; height: 42px; object-fit: contain;
}
.feature-item:hover {
  box-shadow: 0 6px 16px 0 rgba(54, 140, 68, 0.11);
  transform: translateY(-3px);
}

/* ===============
 HERO, BANNER, CTA
=================*/
.hero, .about-hero, .services-hero, .workshop-hero, .testimonials-hero, .blog-hero, .contact-hero, .legal-hero, .thank-you {
  background: linear-gradient(120deg, #F7F9F8 70%, var(--color-green2) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 48px 0 32px 0;
  border-radius: 0 0 44px 44px / 0 0 26px 26px;
  box-shadow: 0 8px 32px 0 rgba(35, 134, 88,0.07);
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero, .about-hero, .services-hero, .workshop-hero, .testimonials-hero, .blog-hero, .contact-hero, .legal-hero, .thank-you {
    min-height: 200px;
    padding: 32px 0 20px 0;
    border-radius: 0 0 28px 28px;
  }
}
.cta-banner {
  background: #E7EFE3;
  background-image: url('assets/bg-texture-organic.svg');
  background-repeat: repeat;
  border-radius: 44px;
  box-shadow: 0 3px 12px 0 rgba(35, 134, 88, 0.05);
  text-align: center;
  margin-bottom: 60px;
  margin-top: 10px;
}
.cta-banner h2 { color: var(--color-green1); }
.cta-banner a.cta-btn { margin-top: 12px; }

/* ===============
 NAVIGATION & HEADER
=================*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #E3E9E4;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  box-shadow: 0 1px 8px rgba(70, 100, 70, 0.04);
  min-height: 68px;
}
header > a > img {
  height: 40px; width: auto;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 8px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-green2);
  color: var(--color-green1);
}
.cta-btn {
  background: var(--color-green1);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 11px 26px;
  border-radius: 35px;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 8px 0 rgba(29,122,67,0.09);
  transition: background 0.18s, color 0.28s, transform 0.18s;
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-block;
  margin-left: 18px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
header .cta-btn {margin-left: 28px;}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-green1);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 20px;
  transition: background 0.18s, color 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
}
@media (max-width: 991px) {
  header nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============
  MOBILE MENU
==============*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(36, 55, 42, 0.88);
  backdrop-filter: blur(1.5px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.58,.06,.32,1.02);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--color-green1);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px; height: 44px;
  margin: 23px 27px 6px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.17s;
  z-index: 201;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { background: var(--color-primary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 48px 28px 36px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.23rem;
  padding: 11px 7px;
  border-radius: 9px;
  min-width: 150px;
  transition: background 0.16s, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-green2);
  color: var(--color-green1);
}
@media (min-width: 992px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none;
    pointer-events: none;
    opacity: 0;
    transition: none;
  }
}


/* =========================================================
    FLEX LAYOUTS FOR FEATURES & SECTIONS
========================================================= */
.features, .feature-grid, .service-cards, .team-carousel, .testimonial-slider, .testimonial-grid, .category-list, .blog-list, .post-grid, .footer-menu, .footer-social, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-grid {
  justify-content: flex-start;
  gap: 28px;
}
.service-cards, .post-grid, .testimonial-grid, .team-carousel {
  justify-content: flex-start;
  gap: 24px;
}
.category-list {gap: 14px;}
.team-carousel .team-member,
.service-card,
article {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 var(--color-earth-shadow);
  border: 1px solid var(--color-border-light);
  padding: 24px 16px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.service-card:hover, article:hover, .team-member:hover {
  box-shadow: 0 6px 20px 0 rgba(35, 134, 88, 0.14);
  transform: translateY(-2px);
}
.service-card img, .team-member img, .service-cards img {
  width: 48px; height: 48px; margin-bottom: 14px; object-fit: contain;
}
.service-card h3, .team-member h3, article h3 {
  margin-bottom: 12px;
}
.

/* Testimonial slider (index) */
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .testimonial-slider, .testimonial-grid, .feature-grid, .service-cards, .post-grid, .category-list, .team-carousel {
    flex-direction: column;
    gap: 16px;
  }
  .team-carousel .team-member, .service-card, article, .testimonial-card {
    min-width: unset; max-width: unset; width: 100%;
  }
}

/* ==============
  ABOUT + TRUST ICONS
===============*/
.trust-icons {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 8px;
}
.trust-icons img {
  width: 44px; height: 44px;
  background: #E3E9E4;
  border-radius: 50%;
  padding: 6px;
}
.certifications, .trustpilot-badges {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 9px;
  flex-wrap: wrap;
  color: var(--color-green1);
  font-weight: 500;
}
.unique-points {
  margin: 14px 0 11px 0;
}
.unique-points li {
  padding-left: 19px;
  position: relative;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.unique-points li:before {
  content: "";
  background: var(--color-green1);
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
}

/* ================================
 SERVICE & CATEGORY STYLING
==================================*/
.category-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #F6FAF2;
  border-radius: 11px;
  padding: 12px 18px;
  font-size: 1.03rem;
  color: var(--color-green1);
  border: 1px solid #E3E9E4;
  margin-bottom: 10px;
}
.category-list a {
  font-family: Oswald;
  color: var(--color-primary);
  font-size: 1.05rem;
  transition: color 0.17s;
}
.category-list a:hover, .category-list a:focus {
  color: var(--color-green1);
}

/* SERVICE ACCORDION (STATIC, NOT JS) */
.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.service-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 var(--color-earth-shadow);
  padding: 16px 14px 14px 14px;
  border: 1px solid #E3E9E4;
  margin-bottom: 6px;
}
.benefits-column {
  background: #E7EFE3;
  border-radius: 10px;
  padding: 18px 14px;
  color: var(--color-green1);
  font-weight: 500;
  max-width: 350px;
  margin-top: 8px;
}


/* =====================
 TESTIMONIALS / RATINGS
======================*/
.testimonials-hero, .testimonials-list {
  background: #f7faf8;
}
.testimonial-name {
  color: var(--color-primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.rating-summary {
  background: #e0efe2;
  border-radius: 18px;
  padding: 30px 20px;
  margin: 42px 0 24px 0;
  box-shadow: 0 2px 10px 0 rgba(29,122,67,0.05);
}
.average-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 9px;
  font-size: 1.3rem;
  color: var(--color-green1);
  font-family: 'Oswald', Arial, sans-serif;
}
.star-breakdown ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 1rem;
}

/* ========================
 BLOG
========================*/
.post-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-grid article {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 var(--color-earth-shadow);
  border: 1px solid #E3E9E4;
  padding: 20px 14px 16px 14px;
  margin-bottom: 20px;
}
.post-grid article h3 {
  color: var(--color-primary);
  margin-bottom: 8px;
}
.post-grid article a {
  display: inline-block;
  margin-top: 9px;
  color: var(--color-green1);
  font-weight: 500;
  font-family: 'Oswald', Arial, sans-serif;
  border-bottom: 1.5px solid var(--color-green1);
  transition: color 0.18s, border-color 0.18s;
}
.post-grid article a:hover, .post-grid article a:focus {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ==============
 CONTACT
================*/
.contact-form .cta-btn,
.contact-form .cta-btn:first-of-type {
  margin-top: 10px;
  margin-right: 13px;
}
.contact-cta-text {
  font-size: 1.03rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: var(--color-green1);
  background: #f6faf2;
  border-radius: 9px;
  padding: 10px 14px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #eef8f2;
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--color-primary);
  font-weight: 500;
}
.map-placeholder img {width: 38px; height: 38px;}


/* =========================
  LEGAL & POLICIES SECTIONS
==========================*/
.legal-hero {
  background: linear-gradient(110deg, #f7faf8 60%, #e7efe3 100%);
}
.policy-content, .gdpr-content, .cookies-content, .terms-content {
  margin-top: 12px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 var(--color-earth-shadow);
  padding: 34px 22px;
}
.policy-content h2, .gdpr-content h2, .cookies-content h2, .terms-content h2 {
  color: var(--color-green1);
  margin-bottom: 19px;
}
.text-section {
  margin-top: 6px;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================
  FOOTER
==========================*/
footer {
  background: #183152;
  color: #fff;
  padding: 46px 0 28px 0;
  margin-top: 56px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 34px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 11px;
}
.footer-brand img {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #f8faf7;
  padding: 3px;
}
.footer-brand p {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1px;
}
.footer-menu a {
  color: #d7efe7;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 3px 5px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #2C6542;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
  margin-top: 5px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e7efe3;
  font-size: 1.02rem;
}
.footer-contact-item img {width: 24px;height: 24px;}
.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 14px;
}
.footer-social a img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f6faf2;
  transition: box-shadow 0.14s, background 0.14s;
  border: 1px solid #e3e9e4;
  padding: 3px;
}
.footer-social a:hover img, .footer-social a:focus img {box-shadow: 0 2px 7px #00A6C8BB;background: #E3E9E4;}
.footer-legal {
  color: #C0D6C3;
  margin-top: 16px;
  font-size: 0.96rem;
  opacity: 0.8;
}
.footer-legal a {
  color: #a2d9bf;
  border-radius: 3px;
  transition: background 0.12s, color 0.16s;
  padding: 2px 5px;
}
.footer-legal a:hover, .footer-legal a:focus {background: #214532;color: #fff;}

/* Mobile footer responsiveness */
@media (max-width:768px) {
  .footer-menu, .footer-legal, .footer-social, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  footer .container {
    gap: 22px;
  }
}

/* ==================
  BUTTONS & INTERACTIONS
===================*/
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.18s, box-shadow 0.14s;
}
button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 2.5px #23865833;
  outline: none;
}

/* ================
   FORM ELEMENTS (for future forms)
==================*/
input, textarea, select {
  border: 1.5px solid #e7efe3;
  border-radius: 7px;
  font-size: 1.04em;
  padding: 11px;
  width: 100%;
  margin-bottom: 15px;
  transition: border-color 0.17s;
  background: #f9faf9;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-green1);
  background: #fff;
  outline: none;
}
label {
  font-family: 'Oswald', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* =========================================================
    RESPONSIVE DESIGN (MOBILE FIRST)
========================================================= */
@media (max-width: 991px) {
  .container {
    padding: 0 10px;
  }
  .footer-brand img {.width: 36px; height: 36px;}
}
@media (max-width: 840px) {
  .features, .feature-grid, .service-cards, .post-grid, .team-carousel, .testimonial-slider, .testimonial-grid, .footer-contact {
    flex-direction: column;
    gap: 14px;
  }
  .team-member,.service-card, article, .testimonial-card {width: 100%;min-width: unset;}
}
@media (max-width: 600px) {
  .hero, .about-hero, .services-hero, .workshop-hero, .testimonials-hero, .blog-hero, .contact-hero, .legal-hero, .thank-you {
    padding: 20px 0 8px 0;
    min-height: 120px;
    border-radius: 0 0 20px 20px;
  }
  .section,
  .policy-content, .gdpr-content, .cookies-content, .terms-content {
    padding: 18px 7px !important;
    font-size: 0.97rem;
  }
}

/* =======================
   ANIMATIONS / MICRO-INTERACTIONS
=======================*/
.cta-btn, button, input, .service-card, .testimonial-card, .feature-item {
  transition: box-shadow 0.15s, background 0.19s, color 0.19s, transform 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  box-shadow: 0 2px 12px 0 #23865844;
  background: var(--color-primary);
  color: #fff;
}
.service-card:hover, .testimonial-card:hover, .feature-item:hover {
  transform: translateY(-2.5px) scale(1.016);
  box-shadow: 0 8px 24px 0 rgba(35, 134, 88, 0.12);
}

/* =====================
 COOKIE CONSENT BANNER
======================*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe7;
  color: var(--color-primary);
  border-top: 2.5px solid var(--color-green1);
  box-shadow: 0 -3px 10px 0 rgba(35,134,88,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 16px 24px;
  z-index: 9999;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.44,-0.15,.34,1.07), opacity 0.18s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: var(--color-green1);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 25px;
  border: none;
  padding: 9px 21px;
  cursor: pointer;
  margin-left: 0;
  box-shadow: 0 1px 4px #6fd2a810;
}
.cookie-banner button.cookie-settings {
  background: #ded6ca;
  color: var(--color-primary);
  border: 1px solid #aaa;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--color-green2);
  color: var(--color-green1);
}

/* COOKIE CONSENT MODAL POPUP */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 49, 82, 0.45);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #F8FCF8;
  border-radius: 19px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 3px 16px 0 rgba(54,140,68,0.20);
  max-width: 390px;
  width: 94vw;
  color: var(--color-primary);
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--color-green1);
  font-family: Oswald;
  margin-bottom: 13px;
}
.cookie-modal-content label {
  cursor: pointer;
  font-size: 1.04em;
  margin-bottom: 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
  background: #eef4f0;
  padding: 10px 13px;
  border-radius: 8px;
}
.cookie-modal-content .cookie-switch {
  width: 37px;
  height: 19px;
  border-radius: 12px;
  background: #d8e7db;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-inline-end: 9px;
}
.cookie-modal-content .cookie-switch input {
  display: none;
}
.cookie-modal-content .cookie-switch span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px; height: 15px;
  background: var(--color-green1);
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-modal-content .cookie-switch input:checked+span {
  left: 19px;
  background: var(--color-secondary);
}
.cookie-modal-content .cookie-category.essential label {
  color: #a5bca3;
}
/* Modal buttons */
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
  margin-top: 19px;
}
.cookie-modal-content button {
  padding: 8px 16px;
  background: var(--color-green1);
  color: #fff;
  border-radius: 17px;
  font-family: Oswald;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus,
.cookie-modal-content .cookie-close:hover {
  background: var(--color-primary);
}
.cookie-close {
  position: absolute;
  top: 12px;
  right: 17px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--color-green1);
  cursor: pointer;
  z-index: 1;
}
.cookie-close:focus {color: var(--color-primary);}

/* ===========
 ORGANIC SHAPES & TEXTURES
============*/
/* Example organic background SVG textures */
.hero, .about-hero, .workshop-hero, .testimonials-hero, .cta-banner {
  position: relative;
  overflow: hidden;
}
.hero:before, .about-hero:before, .workshop-hero:before, .cta-banner:before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 160px;
  background: radial-gradient(ellipse at center, #C0D6C3 80%, transparent 100%);
  opacity: 0.21;
  filter: blur(4px);
  z-index: 1;
}
.hero:after {
  content: '';
  position: absolute;
  left: -60px; bottom: -44px;
  width: 180px; height: 120px;
  background: radial-gradient(ellipse at center, #ded6ca 70%, transparent 100%);
  opacity: 0.27;
  filter: blur(6px);
  z-index: 1;
}
/* Ensure content stays above decorations */
.hero .container, .cta-banner .container, .about-hero .container, .workshop-hero .container {
  position: relative;
  z-index: 2;
}

/* ============
  SCROLLBAR (Thematic styling, not critical)
============*/
body::-webkit-scrollbar {
  width: 12px;
  background: #F4F8FB;
}
body::-webkit-scrollbar-thumb {
  background: #C0D6C3;
  border-radius: 8px;
  border: 2px solid #F4F8FB;
}

/* ================
  ACCESSIBILITY & CONTRAST
==================*/
.testimonial-card, .testimonial-slider .testimonial-card, .testimonial-grid .testimonial-card {
  background: #fff;
  color: var(--color-primary);
}
.testimonial-card p {
  color: #294d2d;
  font-size: 1.09rem;
}
.testimonial-card .testimonial-name { color: #183152; }

/* ===============
  PRINT
===============*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {display: none !important;}
  main {margin: 0;}
}

/*
 * End of Organic Nature Modern Professional CSS for Dispeteori Autoservice
 * Consistent with ALL FLEXBOX layouts, no grid/columns, and all required brand & organic rules.
 */