/* ===================================================================
   CSS RESET & BASELINE 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 {
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 16px;
  color-scheme: light;
}
body {
  min-height: 100%;
  background: #F9FAF5;
  color: #255930;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
a {
  color: #255930;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.5,1.5,.5,1);
}
a:hover, a:focus {
  color: #709775; 
  outline: none;
}
ul, ol {
  list-style: inside disc;
  margin: 8px 0 8px 18px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #255930;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 18px;}
h3 {font-size: 1.25rem; margin-bottom: 12px;}
h4, h5, h6 {font-size: 1.1rem; margin-bottom: 10px;}
p {margin-bottom: 1.1em; line-height: 1.7;}
strong {font-weight: bold;}
img, picture, video {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 12px;
}
button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #709775;
  outline-offset: 2px;
}

/* ===================================================================
   CONTAINER & LAYOUTS (FLEXBOX ONLY)
   =================================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* Section spacing (MANDATORY) */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 24px 0 rgba(112, 151, 117, 0.06);
}

@media (max-width: 600px) {
  .section, section {
    padding: 24px 5px;
    border-radius: 14px;
  }
}

/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */
header {
  background: #F9FAF5;
  border-bottom: 2px solid #e7ecd7;
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 14px;
  border-radius: 10px;
  background: none;
  transition: background .15s, color .18s;
}
nav a:hover, nav a:focus {
  background: #e7ecd7;
  color: #255930;
}
.cta-btn {
  background: #255930;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 26px;
  font-size: 1.06rem;
  border-radius: 22px;
  font-weight: 600;
  box-shadow: 0 1px 10px 0 rgba(38, 70, 41, .06);
  border: none;
  transition: background .22s, color .18s, box-shadow .22s;
  margin-left: 8px;
  cursor: pointer;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #709775;
  color: #fff;
  box-shadow: 0 3px 18px 0 rgba(38, 70, 41, 0.11);
}

/* ===================================================================
   MOBILE NAVIGATION
   =================================================================== */
.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #255930;
  padding: 4px 12px;
  border-radius: 12px;
  cursor: pointer;
  margin-left: 12px;
  transition: background .2s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e7ecd7;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(39, 89, 47, 0.93);
  transition: transform 0.35s cubic-bezier(.43,1.5,.4,1), opacity 0.3s;
  transform: translateX(100%);
  opacity: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F9FAF5;
  font-size: 2.3rem;
  padding: 8px 18px 8px 4px;
  align-self: flex-start;
  transition: background .17s;
  border-radius: 16px;
  cursor: pointer;
  margin: 18px 0 0 18px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(112,151,117,.16);
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
  margin: 60px auto 0 auto;
  padding: 24px 20px;
  width: 100%;
  max-width: 330px;
}
.mobile-nav a {
  color: #F9FAF5;
  background: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  padding: 13px 10px;
  border-radius: 12px;
  font-weight: 500;
  display: block;
  text-align: left;
  transition: background .17s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #709775;
  color: #fff;
}

@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 899px) {
  nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}

/* ===================================================================
   HERO SECTIONS
   =================================================================== */
.hero {
  background: linear-gradient(120deg, #F9FAF5 80%, #e7ecd7 100%);
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 60px;
  padding-top: 30px;
}
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  gap: 20px;
}
.hero h1 {
  color: #255930;
  font-size: 2.4rem;
}
.hero p {
  color: #255930;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.hero .cta-btn {
  margin: 0 auto;
  font-size: 1.04rem;
}

/* ===================================================================
   FEATURE BOXES
   =================================================================== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: center;
}
.feature {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(112, 151, 117, 0.08);
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 18px 22px 18px;
  text-align: center;
  transition: box-shadow .25s, transform .20s;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 32px 0 rgba(38, 70, 41, 0.13);
  transform: translateY(-4px) scale(1.02);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.feature h3 {
  color: #255930;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.feature p {
  color: #487552;
  font-size: 1rem;
}

/* ===================================================================
   CARD & GRID CONTAINERS (FLEXBOX ONLY)
   =================================================================== */
.card-container {
  display: flex !important;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 220px;
  min-width: 210px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 18px 0 rgba(112, 151, 117, 0.08);
  transition: box-shadow .19s, transform .14s;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 24px 18px;
  gap: 15px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(38, 70, 41, 0.09);
  transform: translateY(-3px);
}

.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;
    gap: 20px;
    text-align: center;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  background: #F9FAF5;
  box-shadow: 0 3px 12px 0 rgba(112, 151, 117, 0.10);
  color: #255930;
  border-radius: 22px;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 560px;
  transition: box-shadow .22s;
  font-size: 1.12rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  position: relative;
}
.testimonial-card p {
  color: #255930;
  flex: 1;
  font-size: 1.08rem;
  margin-bottom: 0px;
}
.testimonial-card span {
  display: block;
  color: #709775;
  font-size: 0.96rem;
  font-style: normal;
  margin-left: 12px;
  font-weight: 600;
}
.testimonial-card:before {
  content: '\201C';
  font-family: Georgia, serif;
  color: #d7dfc9;
  font-size: 3.4rem;
  position: absolute;
  left: 16px;
  top: -18px;
  line-height: .7;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 600px) {
  .testimonial-card { flex-direction: column; gap: 8px; padding: 14px 10px 15px 18px; }
  .testimonial-card:before { font-size: 2.3rem; left: 7px; top: -12px; }
}

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

/* ===================================================================
   SERVICES GRID (services.html)
   =================================================================== */
.services-grid .service-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.service-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 18px 0 rgba(112, 151, 117, 0.07);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px 25px 22px;
  transition: box-shadow .22s, transform .13s;
  margin-bottom: 20px;
  gap: 10px;
  border: 1.5px solid #e7ecd7;
}
.service-card h3 {
  font-size: 1.18rem;
  color: #255930;
  margin-bottom: 10px;
}
.service-card p {
  color: #487552;
  font-size: 1rem;
  margin-bottom: 10px;
}
.service-card .service-price {
  color: #255930;
  background: #f2f6e9;
  font-weight: 700;
  border-radius: 14px;
  margin-top: 8px;
  padding: 5px 19px;
  font-size: 1rem;
}
.service-card:hover,.service-card:focus-within {
  box-shadow: 0 7px 30px 0 rgba(38, 70, 41, 0.13);
  transform: translateY(-3px) scale(1.024);
  border-color: #255930;
}

/* ===================================================================
   TIPS / ARTICLES / CATEGORIES (gartentipps.html)
   =================================================================== */
.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}
.tip-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 13px 0 rgba(112, 151, 117, 0.08);
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 340px;
  padding: 24px 17px 15px 22px;
  font-size: 1rem;
  transition: box-shadow .17s, transform .13s;
  display: flex;
  flex-direction: column;
}
.tip-card h3 {
  font-size: 1.1rem;
  color: #255930;
  margin-bottom: 10px;
}
.tip-card:hover, .tip-card:focus-within {
  box-shadow: 0 8px 26px 0 rgba(38, 70, 41, 0.13);
  transform: translateY(-4px) scale(1.025);
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  font-size: 0.99rem;
  color: #255930;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
}
.categories-list span {
  background: #e7ecd7;
  color: #255930;
  border-radius: 12px;
  padding: 5px 13px;
  margin: 0 3px;
  font-size: 0.97rem;
}

/* ===================================================================
   SEASONAL HIGHLIGHTS / PROJECTS (galerie.html)
   =================================================================== */
.season-tips-grid, .project-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.season-tip, .project {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(112, 151, 117, 0.07);
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 340px;
  padding: 22px 16px 15px 16px;
}
.season-tip h3, .project h3 {
  font-size: 1.12rem;
  color: #255930;
  margin-bottom: 9px;
}
.season-tip p, .project p {
  color: #487552;
  font-size: 0.99rem;
}

.apply-gap-demo { /* not for prod, visual doc use only */ gap: 20px !important; }

/* ===================================================================
   CTA BANNERS
   =================================================================== */
.cta-banner {
  background: #255930;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 22px 0 rgba(38, 70, 41, 0.08);
  margin-bottom: 55px;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-banner h2 {
  color: #F9FAF5;
  font-size: 1.6rem;
}
.cta-banner p {
  color: #e7ecd7;
}
.cta-banner .cta-btn {
  margin: 10px auto 0 auto;
}

/* ===================================================================
   ABOUT SECTIONS & GENERIC .text-section
   =================================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1rem;
  margin-top: 10px;
}
.text-section ul {
  margin-left: 20px;
}

/* Contact details
--------------------------------------- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 15px 0 22px 0;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f5f9ed;
  border-radius: 10px;
  padding: 8px 13px 8px 10px;
  font-size: 1rem;
  color: #255930;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 8px 0;
  background: #f3f5ef;
  border-radius: 12px;
  padding: 9px 13px;
  font-size: .98rem;
}

/* Expert advice in tips */
.expert-advice {
  background: #f8fbe6;
  color: #255930;
  border-radius: 14px;
  margin-top: 12px;
  font-size: 0.98rem;
  padding: 13px 17px;
  font-style: italic;
}

/* THANK YOU, ETC. */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: #255930;
  color: #F9FAF5;
  margin-top: 60px;
  padding: 0;
  border-radius: 30px 30px 0 0;
}
footer .container {
  padding: 0 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 0 28px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 4px;
}
.footer-nav a {
  color: #fff;
  background: #709775;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 8px;
  transition: background .16s, color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #e7ecd7;
  color: #255930;
}
.footer-contact, .footer-brand {
  font-size: 0.98rem;
  color: #F9FAF5;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
.footer-brand span {
  color: #F9FAF5;
  font-size: 1.04rem;
  font-weight: 600;
  margin-top: 4px;
  text-align: left;
}
@media (max-width: 600px) {
  footer .content-wrapper { gap: 12px; padding: 19px 0 19px 0; }
  .footer-nav { gap: 12px; }
}

/* ===================================================================
   RESPONSIVE ADJUSTMENTS
   =================================================================== */
@media (max-width: 900px) {
  header .container, .container {
    padding: 0 7px;
  }
  nav, .footer-nav {
    flex-wrap: wrap;
  }
  .feature-grid, .season-tips-grid, .project-descriptions, .card-container, .tips-list, .service-card-grid {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .feature-grid, .season-tips-grid, .project-descriptions, .card-container, .tips-list, .service-card-grid, .content-grid {
    flex-direction: column;
    gap: 13px;
    align-items: flex-stretch;
  }
  .footer-nav {
    gap: 10px;
  }
  .about-section .container, .team-section .container, .why-us-section .container {
    padding: 0 3px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding: 0 2px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.20rem; }
  .hero { padding-top: 17px; }
  .section, section { padding: 12px 2px; }
  .feature, .card, .service-card, .tip-card {
    padding: 12px 7px 12px 9px;
    border-radius: 14px;
  }
  .cta-btn { font-size: 1rem; padding: 8px 16px; }
}

/* ===================================================================
   BUTTONS & INTERACTIONS
   =================================================================== */
button, .cta-btn,
input[type='submit'], input[type='button'] {
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, transform .10s;
}
button:active, .cta-btn:active {
  transform: scale(.97);
}

/* Micro-interactions for cards */
.card:active, .feature:active, .service-card:active, .tip-card:active {
  transform: scale(0.985);
}

/* ===================================================================
   COOKIE CONSENT BANNER
   =================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #255930;
  box-shadow: 0 -5px 32px 0 rgba(112, 151, 117, 0.18);
  padding: 25px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  z-index: 2000;
  border-radius: 24px 24px 0 0;
  max-width: 580px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  opacity: 0;
  transition: transform .38s cubic-bezier(.4,1.5,.5,1.2), opacity .25s;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 4px;
  width: 100%;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  margin-top: 5px;
  transition: background .18s, color .16s, box-shadow .17s;
  box-shadow: 0 1px 8px 0 rgba(112,151,117,.04);
  min-width: 136px;
}
.cookie-btn.accept {
  background: #255930;
  color: #fff;
  font-weight: 600;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #709775;
}
.cookie-btn.reject {
  background: #e7ecd7;
  color: #255930;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f2f6e9;
}
.cookie-btn.settings {
  background: #fff;
  color: #255930;
  border: 1.5px solid #255930;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e7ecd7;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(39, 89, 47, 0.69);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 7px 40px 0 rgba(38, 70, 41, 0.19);
  padding: 30px 22px 22px 22px;
  min-width: 300px;
  max-width: 410px;
  color: #255930;
  font-size: 1.03rem;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookieModalIn .45s cubic-bezier(.7,1.5,.5,1);
}
@keyframes cookieModalIn {
  from { transform: translateY(60px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  font-size: 1.5rem;
  color: #709775;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background .16s;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #e7ecd7;
  color: #255930;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-category {
  background: #f3f5ef;
  border-radius: 13px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 5px;
}
.cookie-category input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.cookie-category label {
  font-weight: 600;
  color: #255930;
}
.cookie-category.essential label {
  color: #487552;
}
.cookie-category .locked {
  font-size: 1.18rem;
  color: #709775;
  margin-left: 8px;
}

.cookie-modal .cookie-btn {
  width: 100%;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 18px 6px 15px 6px;
    min-width: 0;
    max-width: 96vw;
  }
  .cookie-banner {
    padding: 12px 3px 11px 7px;
    border-radius: 16px 16px 0 0;
  }
}

/* ===================================================================
   MISC CLASSES & OVERRIDES
   =================================================================== */
.bg-accent {
  background: #F9FAF5;
}
.bg-secondary {
  background: #709775;
}
.text-primary {
  color: #255930;
}
.text-secondary {
  color: #709775;
}
.text-white {
  color: #fff;
}
.rounded {
  border-radius: 24px !important;
}
.shadow {
  box-shadow: 0 3px 24px 0 rgba(112,151,117,0.12);
}

::-webkit-scrollbar {
  width: 10px;
  background: #e7ecd7;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #709775;
  border-radius: 16px;
}

/* ACCESSIBILITY FOCUS RING */
a:focus, button:focus, .cta-btn:focus, input:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #709775;
  outline-offset: 2px;
}

/* Hide visually-only for a11y */
.sr-only {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Ensure NO GRID RULES used anywhere (MANDATED) */
/* All layouts are flex-based only! */

/* ===================================================================
   END OF STYLE.CSS
   =================================================================== */