/* --- CSS RESET, NORMALIZE & BASE --- */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  background: #F4F7FA;
  color: #253358;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #15803D;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:focus, a:hover {
  color: #253358;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
input, button, select, textarea {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* --- CUSTOM PROPERTIES (WITH FALLBACKS) --- */
:root {
  --color-primary: #253358;
  --color-secondary: #15803D;
  --color-accent: #F4F7FA;
  --color-brown: #A8875B;
  --color-terracotta: #EBB99B;
  --color-green: #15803D;
  --color-green-soft: #5CB176;
  --color-bg: #F4F7FA;
  --color-bg-dark: #E9ECE5;
  --color-card: #FFFFFF;
  --color-card-border: #E0E3DE;
  --color-text-main: #253358;
  --color-text-inverse: #FFF;
  --color-highlight: #F8FAF1;
  --shadow-md: 0 2px 12px rgba(37, 51, 88, 0.06);
  --shadow-lg: 0 4px 24px rgba(21, 128, 61, 0.10);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius: 8px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* --- TYPOGRAPHY & HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--color-green);
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
}

body, p, ul, ol, li, table, th, td {
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text-main);
  line-height: 1.7;
}

.lead, .subheadline {
  font-size: 1.2rem;
  color: var(--color-green);
  margin-bottom: 28px;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

.text-section {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --- CONTAINERS & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}
@media (max-width: 900px) {
  .header-flex {
    gap: 16px;
  }
}
.content-wrapper {
  margin-bottom: 0;
  padding-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* --- MAIN NAV --- */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a.cta {
  background: var(--color-green);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius-xl) var(--radius-md) var(--radius-xl) var(--radius);
  font-weight: 600;
  margin-left: 14px;
  box-shadow: var(--shadow-md);
  text-shadow: 0 1px 4px rgba(21,128,61,0.10);
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  transition: background 0.2s, color 0.15s, box-shadow 0.2s;
}
.main-nav a.cta:hover,
.main-nav a.cta:focus {
  background: var(--color-brown);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-green);
  background: var(--color-highlight);
  text-decoration: none;
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-green);
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-green);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, border 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-green);
  color: #fff;
  border-color: var(--color-brown);
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F4F7FA;
  background-image: repeating-radial-gradient(circle at 40% 60%, #dbe9de 0%, transparent 70%);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(0.5,0.2,0.2,1);
  display: flex;
  flex-direction: column;
  padding-top: 22px;
  padding-left: 0;
  padding-right: 0;
  box-shadow: 0 0 0 5vw rgba(21,128,61,0.06);
  opacity: 0.995;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: var(--color-green);
  margin-right: 26px;
  margin-bottom: 22px;
  margin-top: 8px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1250;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 28px 34px 20px 34px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 13px 12px;
  width: 100%;
  transition: background 0.2s, color 0.2s, font-weight 0.17s;
  font-family: var(--font-body);
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  outline: none;
}

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

/* --- HERO, ACCENT and CARDS --- */
.hero {
  background: var(--color-green-soft);
  background-image: url('../assets/bg-leaf.svg'), linear-gradient(120deg, #E9ECE5 35%, #dbe9de 100%);
  background-repeat: no-repeat;
  background-position: right bottom;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding-top: 54px;
  padding-bottom: 54px;
  margin-bottom: 60px;
  box-shadow: 0 2px 40px 0 rgba(37,51,88,0.08);
}
.hero h1 {
  color: var(--color-green);
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero .cta {
  margin-top: 26px;
}
.bg-accent {
  background: var(--color-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 16px rgba(37,51,88,0.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border: 1.5px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  padding: 26px 20px 18px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, border-color 0.15s, transform 0.16s;
}
.card:hover, .card:focus-within {
  border-color: var(--color-green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.01);
}

/* --- FLEXBOX PATTERNS --- */
.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: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 18px rgba(21,128,61,0.07);
  margin-bottom: 20px;
  border-left: 5px solid var(--color-green);
}
.testimonial-card p {
  color: #233230;
  font-weight: 500;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-weight: 500;
}

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

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.team-grid > div {
  background: var(--color-card);
  border-radius: var(--radius-md) 60px var(--radius-md) var(--radius-md);
  box-shadow: 0 1px 10px rgba(21,128,61,0.05);
  padding: 24px 22px 20px 22px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 0;
  border-left: 4px solid var(--color-green-soft);
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.rating-overview {
  background: var(--color-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(37,51,88,0.04);
  text-align: center;
  padding: 16px 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-green);
  margin-top: 18px;
  margin-bottom: 12px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 10px;
}
.feature-grid > div {
  background: var(--color-card);
  border-radius: 30px 10px 24px 10px;
  box-shadow: var(--shadow-md);
  padding: 24px 20px 16px 20px;
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-left: 5px solid var(--color-green);
  transition: box-shadow 0.17s, background 0.18s;
}
.feature-grid > div:hover {
  background: var(--color-highlight);
  box-shadow: var(--shadow-lg);
}
.feature-grid img {
  width: 38px;
  margin-bottom: 8px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list > div {
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 5px rgba(37,51,88,0.07);
  flex: 1 1 240px;
  min-width: 200px;
  padding: 20px 18px 12px 18px;
  margin-bottom: 0;
  border-left: 4px solid var(--color-green-soft);
  transition: box-shadow 0.12s, border-left 0.18s;
}
.service-list > div:hover {
  border-left: 4px solid var(--color-green);
  box-shadow: var(--shadow-lg);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 8px rgba(21,128,61,0.05);
  padding: 18px 15px 10px 20px;
  border-left: 3px solid var(--color-green);
  transition: box-shadow .14s;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}

@media (max-width: 950px) {
  .feature-grid, .service-list, .testimonial-list, .team-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- TABLES (PRICING TABLE) --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-card);
  box-shadow: 0 1px 8px rgba(21,128,61,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-card-border);
  text-align: left;
}
.pricing-table th {
  background: var(--color-highlight);
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--color-green);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  font-size: 1.05rem;
}

.notes-section {
  margin-top: 14px;
  background: var(--color-bg-dark);
  padding: 15px 18px;
  border-radius: var(--radius-md);
  color: #47603a;
  font-size: 0.97rem;
  font-style: italic;
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-xl) var(--radius-lg) var(--radius-xl) var(--radius);
  font-size: 1.12rem;
  padding: 13px 36px;
  font-weight: 600;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(21,128,61,0.12);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  box-shadow: 0 2px 14px rgba(21,128,61,0.08);
  transition: background 0.2s, box-shadow 0.2s, color 0.18s, transform 0.15s;
}
.cta.secondary {
  background: var(--color-brown);
  color: #fff;
  margin-left: 0;
}
.cta:hover, .cta:focus {
  background: var(--color-brown);
  color: #fff;
  transform: scale(1.045);
  box-shadow: 0 4px 28px rgba(168,135,91,0.14);
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: var(--color-green);
}

/* --- LISTS, UL & OL --- */
.text-section ul {
  list-style: disc inside;
  margin-bottom: 14px;
  color: #415244;
  padding-left: 16px;
  margin-top: 8px;
}
.text-section li {
  margin-bottom: 9px;
  font-weight: 400;
}

/* --- TIMELINE --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 14px;
  border-left: 3px solid var(--color-green);
  padding-left: 28px;
}
.timeline li {
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* --- MAP EMBED, CONTACT DETAILS, OPENING HOURS --- */
.contact-details, .opening-hours {
  background: var(--color-highlight);
  border-radius: var(--radius-md);
  padding: 18px 20px 8px 26px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 0 1px 8px rgba(21,128,61,0.05);
}
.contact-details img {
  margin-right: 8px;
  margin-bottom: -3px;
  vertical-align: middle;
}
.opening-hours ul {
  list-style: none;
  padding-left: 2px;
  margin-top: 4px;
}
.opening-hours li {
  margin-bottom: 5px;
}

/* --- FOOTER --- */
footer {
  background: #E9ECE5;
  color: #253358;
  font-size: 1rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding-top: 40px;
  padding-bottom: 12px;
  margin-top: 60px;
  box-shadow: 0 -2px 18px rgba(21,128,61,0.05);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 44px;
  justify-content: space-between;
  padding-bottom: 16px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
  font-size: 1.05rem;
}
.footer-menu a {
  color: #415244;
  font-family: var(--font-body);
  border-radius: var(--radius);
  transition: color 0.19s, font-weight 0.11s, background 0.12s;
  padding: 5px 0;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-green);
  background: #e0f1e9;
  font-weight: 500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact img {
  margin-right: 7px;
  margin-bottom: -2px;
  vertical-align: middle;
}
.footer-bottom {
  font-size: 0.99rem;
  color: #7B806D;
  text-align: center;
  margin-top: 19px;
  padding-bottom: 2px;
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* --- MAP-EMBED SECTION --- */
.map-embed {
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.98rem;
  color: #5c6449;
  margin-top: 8px;
}

/* --- CLIENT NAMES --- */
.client-names {
  font-size: 0.99rem;
  color: #567357;
  margin-top: 18px;
  margin-bottom: 8px;
}

/* --- ANIMATIONS --- */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.section, .hero, .card, .testimonial-card, .feature-grid > div, .service-list > div, .faq-item, .footer-flex > *, .timeline li {
  animation: fade-in-up 0.55s cubic-bezier(.22,.68,.44,1.01);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 100vw;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
    background-size: 180px;
    background-position: top right;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 34px;
  }
  .card, .feature-grid > div, .testimonial-card {
    padding: 18px 10px 13px 14px;
  }
}
@media (max-width: 480px) {
  .cta,
  .main-nav a.cta {
    padding: 11px 18px;
    font-size: 1rem;
  }
  h1 {
    font-size: 1.41rem;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--color-green);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px 18px 22px;
  box-shadow: 0 -4px 24px rgba(21,128,61,0.14);
  font-size: 1.02rem;
  animation: fade-in-up 0.55s cubic-bezier(.22,.68,.44,1.01);
  transition: transform 0.22s;
  gap: 24px;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner-message {
  flex: 2 1 280px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: #fff;
  color: var(--color-green);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  outline: none;
  border: none;
  cursor: pointer;
  margin-left: 0;
  box-shadow: 0 1px 8px rgba(21,128,61,0.08);
  transition: background 0.18s, color 0.16s, transform 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-brown);
  color: #fff;
  transform: scale(1.06);
}
.cookie-btn.settings {
  background: var(--color-card);
  color: var(--color-green);
  border: 1.5px solid var(--color-green);
  margin-left: 0;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--color-green-soft);
  color: #233230;
  border: 1.5px solid var(--color-brown);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px 18px 8px;
    gap: 12px;
  }
  .cookie-banner-buttons {
    gap: 7px;
    width: 100%;
    flex-direction: column;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,51,61,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-up 0.55s;
}
.cookie-modal {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 32px rgba(21,128,61,0.13);
  max-width: 400px;
  width: 94vw;
  padding: 34px 18px 22px 24px;
  position: relative;
  animation: fade-in-up 0.55s cubic-bezier(.22,.68,.44,1.01);
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 13px;
  color: var(--color-green);
  font-size: 2rem;
  background: none;
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: var(--color-green);
  color: #FFF;
}
.cookie-modal h3 {
  margin-top: 0; margin-bottom: 13px; color: var(--color-green);
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 10px;
}
.cookie-pref-category {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}
.cookie-pref-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E0E3DE;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.14s;
  cursor: pointer;
}
.cookie-pref-toggle:checked {
  background: var(--color-green-soft);
}
.cookie-pref-toggle:disabled {
  background: #B1B99E;
  cursor: not-allowed;
}
.cookie-pref-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(21,128,61,0.1);
  transition: transform 0.14s;
}
.cookie-pref-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-pref-label {
  font-size: 1rem;
  color: #2b3c19;
}

.cookie-modal button.cookie-btn {
  width: 100%;
  margin-top: 24px;
}

/* --- SCROLLBAR STYLING (OPTIONAL, ORGANIC) --- */
::-webkit-scrollbar {
  width: 10px;
  background: #E9ECE5;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-green-soft);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-green);
}

/* --- SELECTION COLOR --- */
::selection {
  background: #9be6a0;
  color: #254028;
}

/* --- ACCESSIBILITY: FOCUS INDICATOR --- */
:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 2px;
}

/* --- UTILITY CLASSES --- */
.mb-0 { margin-bottom: 0!important; }
.mb-1 { margin-bottom: 8px!important; }
.mb-2 { margin-bottom: 16px!important; }
.mb-3 { margin-bottom: 32px!important; }
.mt-2 { margin-top: 16px!important; }
.mt-3 { margin-top: 32px!important; }

/* --- HIDE/SHOW -- */
.hidden { display: none !important; visibility: hidden !important; }

/* --- END CSS --- */