/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #f6f9f5;
  color: #232B23;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1em;
}
a {
  color: #138956;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus, a:hover {
  color: #083E20;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #083E20;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.18rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 12px; }
p, li {
  font-size: 1rem;
  color: #383f3b;
  margin-bottom: 12px;
}
strong, b { color: #138956; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================
   BRAND COLOR PALETTE
   ========================= */
:root {
  --primary: #138956;      /* organic green (main accent) */
  --primary-dark: #083E20; /* deep forest green */
  --accent: #E5F9B5;      /* gentle spring light green */
  --earth-brown: #876940; /* earth brown */
  --soft-sand: #f6f9f5;   /* subtle off-white background */
  --muted: #dae6db;       /* natural muted gray-green */
  --card-bg: #fff;
  --shadow: 0 2px 12px rgba(20,60,35,0.10);
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  padding: 18px 0 18px 0;
  border-bottom: 1px solid var(--muted);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo {
  margin-left: 18px;
  display: block;
  flex-shrink: 0;
}
header .main-nav {
  display: flex;
  gap: 22px;
  margin-left: 36px;
  flex: 1 1 auto;
}
header .main-nav a {
  color: #37603d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 5px 4px;
  border-radius: 8px;
  transition: background 0.15s, color 0.12s;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
header .main-nav a:hover, header .main-nav a:focus {
  background: var(--accent);
  color: var(--primary-dark);
  outline: none;
}
.cta-btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  padding: 13px 38px;
  margin-left: 28px;
  box-shadow: 0 2px 8px rgba(19,137,86,0.07);
  transition: background 0.18s, box-shadow 0.20s, transform 0.19s;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(19,137,86,0.16);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

header .mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 7px 18px;
  margin-left: 16px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 110;
}
header .mobile-menu-toggle:focus, header .mobile-menu-toggle:hover {
  background: var(--primary-dark);
}

/* =========================
   MOBILE NAVIGATION (Burger)
   ========================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(8, 62, 32, 0.97);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.69,.14,.72,1.07);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: 22px;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 18px;
  gap: 0;
  padding-left: 0;
}
.mobile-nav a {
  display: block;
  width: 100%;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(229,249,181,0.13);
  text-align: left;
  letter-spacing: 0.01em;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(19,137,86,0.29);
  color: #fff;
}

/* Hide regular nav on mobile, show burger */
@media (max-width: 1024px) {
  header .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: auto;
    margin-right: 8px;
  }
  header .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 540px) {
  .mobile-nav a {
    font-size: 1.09rem;
    padding: 15px 18px;
  }
}

/* =========================
   HERO SECTIONS
   ========================= */
.hero {
  background: linear-gradient(135deg, #e5f9b5 70%, #f6f9f5 100%);
  border-radius: 0 0 38px 38px/0 0 48px 48px;
  box-shadow: 0 6px 35px rgba(19,137,86,0.04);
  margin-bottom: 42px;
  padding: 36px 0 46px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: var(--primary-dark);
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: #43694b;
  font-size: 1.22rem;
  margin-bottom: 16px;
  font-family: 'Roboto', sans-serif;
}

/* =========================
   FLEX LAYOUT CONTAINERS
   ========================= */
.features {
  background: var(--card-bg);
  border-radius: 35px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 32px 0;
}
.features h2 {
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(19,137,86,0.05);
  padding: 32px 26px 28px 26px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  transition: transform 0.18s, box-shadow 0.17s;
}
.feature-item:hover { transform: translateY(-6px) scale(1.025); box-shadow: 0 8px 32px rgba(19,137,86,0.13); }
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item h3 {
  font-size: 1.12rem;
}

.services-overview {
  background: var(--card-bg);
  border-radius: 35px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 32px 0;
}
.service-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(19,137,86,0.04);
  padding: 28px 20px 24px 20px;
  flex: 1 1 205px;
  min-width: 180px;
  max-width: 260px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.14s;
}
.service-item:hover { transform: translateY(-4px) scale(1.017); box-shadow: 0 8px 20px rgba(19,137,86,0.09); }
.service-item h3 { font-size: 1.07rem; color: var(--primary-dark); }
.service-price {
  font-weight: 600;
  color: #876940;
  font-size: 1.033rem;
  margin-top: 12px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.service-list .service-item {
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 240px;
  align-items: flex-start;
  gap: 12px;
}
.service-list .service-item img {
  width: 42px;
  height: 42px;
}


/* =========================
   CARD & GRID PATTERNS
   ========================= */
.card-container, .blog-posts, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.16s;
  padding: 28px;
}
.card:hover { box-shadow: 0 4px 26px rgba(19,137,86,0.10); transform: translateY(-3px); }

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

.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) {
  .feature-grid, .service-teasers, .service-list, .content-grid, .card-container, .blog-posts, .course-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  background: var(--accent);
  border-radius: 35px;
  padding: 40px 0;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(19,137,86,0.10);
  padding: 20px 30px;
  margin-bottom: 20px;
  max-width: 660px;
  min-width: 220px;
}
.testimonial-content p {
  font-size: 1.08rem;
  color: #324c38;
  font-style: italic;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #138956;
  margin-top: 9px;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 18px;
}
.testimonial-stars img {
  width: 25px;
  height: 25px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
    gap: 12px;
  }
  .testimonial-stars { margin-left: 0; }
}

/* =========================
   CTA SECTION
   ========================= */
.cta {
  background: linear-gradient(135deg, #138956 55%, #E5F9B5 100%);
  border-radius: 32px;
  padding: 48px 0 40px;
  text-align: center;
  margin-bottom: 48px;
  box-shadow: 0 2px 20px rgba(19,137,86,0.07);
}
.cta h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta .cta-btn {
  background: #fff;
  color: var(--primary);
  margin-left: 0;
  margin-top: 11px;
  font-weight: 800;
  font-size: 1.08rem;
  box-shadow: 0 4px 20px rgba(19,137,86,0.08);
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--accent);
  color: var(--primary-dark);
}

/* =========================
   BLOG & POST STYLE
   ========================= */
.blog-intro .categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.blog-intro .categories-list li {
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 14px;
  padding: 6px 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-block;
}
.blog-highlights p {
  margin-bottom: 8px;
  color: #324c38;
  font-style: italic;
}
.blog-list .blog-posts {
  margin-top: 18px;
}
.blog-posts .post-teaser {
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(19,137,86,0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 220px;
  transition: box-shadow 0.15s, transform 0.17s;
}
.blog-posts .post-teaser:hover {
  box-shadow: 0 7px 28px rgba(19,137,86,0.10);
  transform: translateY(-4px);
}
.read-more {
  color: var(--primary);
  font-weight: 700;
  padding-top: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.13s;
}
.read-more:hover, .read-more:focus { color: var(--primary-dark); outline: none; }

/* =========================
   ABOUT + CORPORATE PAGES
   ========================= */
.usp, .about-philosophy, .team, .corporate-solutions, .corporate-benefits, .benefits, .contact-form-hint, .contact-direct {
  background: var(--card-bg);
  border-radius: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 36px 0;
}
.benefits ul, .usp ul, .about-philosophy ul, .team ul, .corporate-solutions ul, .corporate-benefits ul {
  margin-left: 1.6em;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #538467;
  font-family: 'Roboto', sans-serif;
}
.benefits ul li, .usp ul li, .about-philosophy ul li, .team ul li, .corporate-solutions ul li, .corporate-benefits ul li {
  margin-bottom: 10px;
  list-style: disc inside;
}

/* =========================
   CONTACT & THANK YOU
   ========================= */
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.thank-you .text-section {
  gap: 9px;
  margin-bottom: 24px;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--card-bg);
  box-shadow: 0 -1px 10px rgba(19,137,86,0.06);
  margin-top: 48px;
  border-radius: 28px 28px 0 0;
  padding-top: 30px;
  padding-bottom: 8px;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.footer-logo {
  width: 58px;
  height: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #3a573b;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 7px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus { background: var(--accent); color: var(--primary-dark); outline: none; }
.footer-contact {
  color: #3f4b39;
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 4px;
}
.footer-contact img { width: 17px; height: 17px; margin-right: 7px; vertical-align: middle; }

.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}
.social-links a img {
  width: 28px;
  height: 28px;
  transition: transform 0.16s, filter 0.15s;
  filter: grayscale(0.25) brightness(0.95);
}
.social-links a:hover img, .social-links a:focus img {
  filter: none;
  transform: scale(1.19);
}

.copyright {
  color: #6a8b72;
  font-size: 0.91rem;
  margin-bottom: 12px;
}

@media (max-width: 780px) {
  .footer-wrapper { gap: 14px; }
  .footer-contact { font-size: 0.98rem; line-height: 1.5; }
  .footer-logo { width: 46px; }
  .footer-nav { gap: 13px; }
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--card-bg);
  color: #232f1e;  
  border-top: 2px solid var(--accent);
  box-shadow: 0 -4px 20px rgba(19,137,86,0.13);
  padding: 24px 20px 24px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: slideUp 0.66s cubic-bezier(.64,.31,.7,1.06);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 180px;
  min-width: 160px;
  font-size: 1rem;
  color: #2b342d;
}
.cookie-banner .cookie-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 9px 21px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin: 0 4px;
  box-shadow: 0 2px 8px rgba(19,137,86,0.07);
  transition: background 0.17s, box-shadow 0.14s, transform 0.12s;
}
.cookie-banner .cookie-btn:focus, .cookie-banner .cookie-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  outline: none;
  transform: scale(1.04);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--primary-dark);
  transition: background 0.15s;
}
.cookie-banner .cookie-btn.cookie-settings:focus, .cookie-banner .cookie-btn.cookie-settings:hover {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

/* COOKIE PREFERENCE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(8,62,32,0.73);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: 0 7px 36px rgba(19,137,86,0.17);
  padding: 34px 24px 24px 24px;
  min-width: 300px;
  max-width: 98vw;
  width: 440px;
  color: #24301f;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: fadeInModal 0.37s cubic-bezier(.67,.23,.67,.81);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  color: var(--primary-dark);
  font-size: 1.19rem;
  margin-bottom: 6px;
}
.cookie-modal ul {
  list-style: none;
  margin-left: 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-weight: 500;
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 20px;
  background: var(--accent);
  border: 1.5px solid var(--primary);
  position: relative;
  outline: none;
  margin-left: 0;
  vertical-align: bottom;
  transition: background 0.16s, border 0.14s;
}
.cookie-toggle:checked { background: var(--primary); border-color: var(--primary-dark); }
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
}
.cookie-toggle:checked::before { transform: translateX(16px); }

.cookie-modal .cookie-btn {
  margin-top: 11px;
  align-self: flex-end;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 16px; top: 14px;
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover { color: var(--primary); }

@media (max-width: 530px) {
  .cookie-modal {
    padding: 19px 6.5vw 14px 6vw;
    min-width: 0;
    width: 96vw;
  }
}

@media (max-width: 575px) {
  .cookie-banner {
    flex-direction: column;
    text-align: left;
    font-size: 0.99rem;
    gap: 10px;
    padding: 17px 12px 17px 12px;
  }
}

/* =========================
   RESPONSIVE BASE RULES
   ========================= */
@media (max-width: 1080px) {
  .container, .footer-wrapper { max-width: 940px; }
  .card, .service-item, .feature-item, .post-teaser { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container, .footer-wrapper { max-width: 650px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  .hero { padding: 28px 0 30px 0; }
  .section, .features, .testimonials, .cta, .about-short, .services-overview, .usp, .team, .benefits, .contact-form-hint, .contact-direct {
    padding: 26px 7px;
    margin-bottom: 36px;
    border-radius: 19px;
  }
  .footer-logo { width: 39px; }
}
@media (max-width: 500px) {
  body { font-size: 15px; }
  .container, .footer-wrapper { padding-left: 2vw; padding-right: 2vw; }
  .hero .container { padding-left: 2vw; padding-right: 2vw; }
}

/* =========================
   NATURAL/ORGANIC EFFECTS
   ========================= */
.feature-item, .service-item, .testimonial-card, .card {
  box-shadow: 0 8px 20px rgba(19,137,86,0.06), 0 0 0 3px rgba(229,249,181,0.18);
  border-radius: 22px 36px 18px 32px / 17px 29px 22px 27px; /* Natural flowing corners */
}

.features, .services-overview, .testimonials, .cta, .about-short, .usp, .team, .benefits, .contact-direct, .contact-form-hint {
  background: var(--accent);
  border-radius: 31px 35px 42px 24px/35px 21px 21px 34px;
}

/* Decorative subtle leaf overlay (optional effect on sections) */
@media (min-width: 1024px) {
  .section-leaf-effect {
    position: absolute;
    bottom: -38px;
    right: 24px;
    z-index: 0;
    opacity: 0.13;
    pointer-events: none;
  }
}

/* =========================
   FORM ELEMENTS
   ========================= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--card-bg);
  border: 1.3px solid var(--muted);
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 1rem;
  color: #2d381e;
  margin-bottom: 17px;
  outline: none;
  transition: border 0.16s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 4px 1px var(--accent);
}
label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; color: var(--primary-dark); }
button, .btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(19,137,86,0.06);
  transition: background 0.15s, box-shadow 0.13s, transform 0.13s;
  cursor: pointer;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: var(--primary-dark);
  color: #fff;
  outline: none;
  transform: scale(1.03);
}

/* =========================
   Miscellaneous
   ========================= */
::-webkit-scrollbar { width: 10px; background: var(--accent); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 8px; }
::-webkit-input-placeholder { color: #6ca381; opacity: 1; }
::-moz-placeholder { color: #6ca381; opacity: 1; }
:-ms-input-placeholder { color: #6ca381; opacity: 1; }
::placeholder { color: #6ca381; opacity: 1; }

/********* Utility Spacing *********/
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }

/********* Hide visually *********/
.hide { display: none !important; }

/********* Error/Success ******/
.status-success { color: var(--primary); font-weight: 700; }
.status-error { color: #ce3d29; font-weight: 700; }

/********* Focus Outline for accessibility *******/
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/********* Print styles *********/
@media print {
  header, footer, .cta, .cookie-banner, .mobile-menu { display: none !important; }
  .container, .section, main { padding: 0 !important; margin: 0 !important; }
  body { background: #fff; color: #111; }
}
