/* ===== 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-size: 16px;
  background: #F7FAED;
  color: #213D29;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #275B37;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #388351;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
}

/* ====== VARIABLES FOR FALLBACK ====== */
:root {
  --color-primary: #275B37;
  --color-secondary: #B4D6A5;
  --color-accent: #F7FAED;
  --color-dark: #213D29;
  --color-light: #fff;
}

/* ================== TYPOGRAPHY ================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #275B37;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #275B37;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #275B37;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #275B37;
}
p, li, ul {
  font-size: 1rem;
  color: #213D29;
}
strong {
  font-weight: 600;
}
blockquote {
  font-style: italic;
  color: #275B37;
  background: #F6F9F1;
  padding: 16px 24px;
  border-left: 5px solid #B4D6A5;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* ========== COMMON LAYOUTS & CONTAINER ========= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(39,91,55,0.06);
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: linear-gradient(90deg,#B4D6A5 0%, #F7FAED 100%);
  box-shadow: 0 4px 16px 0 rgba(39,91,55,0.05);
  position: relative;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 16px 15px 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav > a {
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  color: #275B37;
}
.main-nav > a.cta-btn {
  background: #275B37;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(39,91,55,0.07);
  margin-left: auto;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, transform 0.12s;
}
.main-nav > a.cta-btn:hover,
.main-nav > a.cta-btn:focus {
  background: #1b3923;
  color: #E3FFD9;
  transform: translateY(-3px) scale(1.04);
}
.main-nav > a:hover:not(.cta-btn),
.main-nav > a:focus:not(.cta-btn) {
  background: #F7FAED;
  color: #388351;
}
.main-nav img {
  height: 40px;
  margin-right: 18px;
}
@media (max-width: 1024px) {
  .main-nav {
    font-size: 0.97rem;
    gap: 2px;
    padding: 13px 7px 10px 7px;
  }
  .main-nav img {
    margin-right: 10px;
    height: 33px;
  }
  .main-nav > a {
    padding: 8px 11px;
  }
  .main-nav > a.cta-btn {
    padding: 8px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 100;
  background: #275B37;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.22s;
  box-shadow: 0 2px 8px 0 rgba(39,91,55,0.11);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #388351;
  outline: none;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(39,91,55,0.09);
  z-index: 150;
  transform: translateX(-105vw);
  transition: transform 0.40s cubic-bezier(.58,0,.43,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #275B37;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin: 20px 26px 0 0;
  line-height: 1;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #B4D6A5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 50px 0 0 34px;
}
.mobile-nav a {
  display: block;
  color: #275B37;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid #F7FAED;
  transition: color 0.2s, background 0.12s;
  border-radius: 8px;
  min-width: 240px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B4D6A5;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ==================== HERO SECTIONS ==================== */
.hero {
  background: linear-gradient(98deg,#B4D6A5 0%, #F7FAED 100%);
  padding: 64px 0 48px 0;
  margin-bottom: 32px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 3px 24px 0 rgba(39,91,55,0.045);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 28px;
}
.hero h1 {
  color: #275B37;
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  color: #3f6146;
  margin-bottom: 12px;
  font-family: 'Roboto', sans-serif;
}
.hero .cta-btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 25px 0;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* ========== CTA BUTTONS ========== */
.cta-btn, .mobile-nav a.cta-btn {
  background: #275B37;
  color: #F7FAED;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 26px;
  box-shadow: 0 3px 18px 0 rgba(39,91,55,0.08);
  outline: none;
  border: none;
  display: inline-block;
  transition: background 0.22s, color 0.13s, transform 0.17s;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1b3923;
  color: #E3FFD9;
  transform: translateY(-2px) scale(1.03);
}

/* ========== FEATURE/GRID SECTIONS ========== */
.features, .services {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .container, .services .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.features h2, .services h2 {
  margin-bottom: 6px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 3px 16px 0 rgba(39,91,55,0.08);
  flex: 1 1 260px;
  min-width: 235px;
  max-width: 320px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item:hover {
  box-shadow: 0 6px 30px 0 rgba(39,91,55,0.16);
  transform: translateY(-5px) scale(1.02);
}
.feature-item h3 {
  margin-bottom: 5px;
  font-size: 1.11rem;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    min-width: 0;
    max-width: unset;
  }
}

/* ========== CARD, TESTIMONIAL, FLEX PATTERNS ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(39,91,55,0.07);
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(39,91,55,0.11);
}
.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;
    align-items: flex-start;
  }
}

.testimonials {
  background: #F6F9F1;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(39,91,55,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(39,91,55,0.08);
  width: 320px;
  max-width: 100%;
  color: #213D29;
  margin-bottom: 16px;
  border-left: 6px solid #B4D6A5;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px 0 rgba(39,91,55,0.13);
  transform: translateY(-3px);
}
.testimonial-card blockquote {
  color: #275B37;
  background: #F7FAED;
  border-left-color: #B4D6A5;
  margin-bottom: 7px;
  font-size: 1.07rem;
}
.testimonial-card p {
  color: #213D29;
  font-weight: 600;
}
.testimonial-card .project-desc {
  background: #F6F9F1;
  color: #275B37;
  font-size: 0.97rem;
  border-radius: 10px;
  padding: 8px 14px;
  margin-top: -7px;
  font-style: italic;
}
@media (max-width: 768px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    width: 100%;
  }
}

/* ========== SERVICE BLOCKS (Leistungen) ========== */
.service-block {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(39,91,55,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.service-block:hover {
  box-shadow: 0 7px 24px 0 rgba(39,91,55,0.15);
  transform: translateY(-4px);
}
.service-block h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.13rem;
}
.service-block .service-price {
  background: #B4D6A5;
  color: #275B37;
  border-radius: 14px;
  padding: 3px 12px;
  margin-left: 15px;
  font-size: 0.99rem;
  font-weight: 600;
}

/* ========== CALL TO ACTION ========== */
.call-to-action, .contact-cta {
  background: linear-gradient(92deg, #B4D6A5 0%, #F7FAED 100%);
  border-radius: 24px;
  margin-bottom: 42px;
  padding: 38px 20px;
  box-shadow: 0 2px 12px 0 rgba(39,91,55,0.07);
}
.call-to-action .content-wrapper, .contact-cta .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
}
.call-to-action .cta-btn, .contact-cta .cta-btn {
  margin-top: 20px;
}

/* ========== FOOTER & LEGAL ======= */
footer {
  background: #275B37;
  color: #fff;
  padding: 32px 0 23px 0;
  margin-top: 72px;
  box-shadow: 0 -4px 32px 0 rgba(39,91,55,0.07);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #F7FAED;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.17s;
  padding: 4px 0;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #B4D6A5;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 1rem;
  margin-top: 13px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}
.footer-brand img {
  height: 34px;
  width: auto;
}
@media (max-width: 768px) {
  .footer-nav {
    gap: 13px;
    font-size: 0.99rem;
  }
  .footer-brand {
    font-size: 0.97rem;
  }
}

/* ========== FORM & PLACEHOLDER SECTIONS ========== */
.form-placeholder, .about-short, .about {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 52px;
  padding: 38px 20px;
  box-shadow: 0 2px 12px 0 rgba(39,91,55,0.07);
}
.form-placeholder ul {
  margin-bottom: 16px;
}
.form-placeholder li {
  margin-bottom: 8px;
}
.privacy-hint {
  background: #F6F9F1;
  color: #275B37;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
.submit-btn-disabled {
  background: #B4D6A5;
  color: #fff;
  border-radius: 24px;
  padding: 12px 40px;
  font-weight: 600;
  text-align: center;
  opacity: 0.7;
  cursor: not-allowed;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px 0 rgba(39,91,55,0.07);
}

/* ========== MAP PLACEHOLDER ========== */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F7FAED;
  border-radius: 14px;
  padding: 14px 20px;
  color: #275B37;
  font-size: 1.04rem;
}
.map-placeholder img {
  width: 35px;
  height: 35px;
}

/* ========= LEGAL PAGE (legal) ========== */
.legal, .thank-you {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 54px;
  padding: 38px 20px;
  box-shadow: 0 2px 12px 0 rgba(39,91,55,0.07);
}
.legal h1, .thank-you h1 {
  font-size: 2.2rem;
  margin-bottom: 17px;
}
.legal h2, .thank-you h2 {
  margin-top: 24px;
  margin-bottom: 13px;
}
.legal h3 { margin-top: 17px; margin-bottom: 10px;}

/* ========== RESPONSIVE LISTS & UL ========== */
ul, ol {
  margin-left: 17px;
  margin-bottom: 10px;
  color: #213D29;
}
ul li {
  margin-bottom: 6px;
  padding-left: 0;
  position: relative;
  font-size: 1rem;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #B4D6A5;
  border-radius: 50%;
  margin-right: 11px;
  position: relative;
  top: 0.5px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #213D29;
  border-top: 3px solid #B4D6A5;
  box-shadow: 0 -2px 18px 0 rgba(39,91,55,0.11);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  padding: 22px 10px 16px 10px;
  transition: transform 0.38s cubic-bezier(.52,.04,.34,1);
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 15px;
}
.cookie-banner button {
  background: #275B37;
  color: #F7FAED;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 22px;
  margin-right: 4px;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  transition: background 0.17s, color 0.12s, transform 0.13s;
  cursor: pointer;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #1b3923;
  color: #E3FFD9;
}
.cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #275B37;
  border: 1.5px solid #B4D6A5;
  padding: 8px 18px;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #F7FAED;
  color: #275B37;
  border-color: #388351;
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33,61,41,0.28);
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fff;
  color: #213D29;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  min-width: 325px;
  padding: 30px 25px 25px 25px;
  box-shadow: 0 7px 44px 0 rgba(39,91,55,0.20);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: fadeInModal 0.33s cubic-bezier(.53,.09,.4,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 11px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.78rem;
  color: #275B37;
  cursor: pointer;
  z-index: 1;
}
.cookie-modal .close-modal-btn:hover {
  color: #B4D6A5;
}
.cookie-modal h3 {
  margin-bottom: 13px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  color: #275B37;
}
.cookie-switch {
  width: 44px;
  height: 24px;
  border-radius: 20px;
  border: 1.5px solid #B4D6A5;
  background: #F7FAED;
  position: relative;
  transition: border 0.13s, background 0.13s;
}
.cookie-switch input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #B4D6A5;
  transition: left 0.18s, background 0.13s;
}
.cookie-switch input[type='checkbox']:checked + .cookie-switch-slider {
  left: 22px;
  background: #275B37;
}
.cookie-settings-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-settings-actions button {
  background: #275B37;
  color: #F7FAED;
  border: none;
  border-radius: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  transition: background 0.14s;
}
.cookie-settings-actions button:last-child {
  background: #fff;
  color: #275B37;
  border: 1.5px solid #B4D6A5;
}
.cookie-settings-actions button:last-child:hover {
  background: #F7FAED;
}

/* ========== SPACING UTILITIES ========== */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }

/* ========== MEDIA QUERIES & RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
  .section, .features, .about, .call-to-action, .services, .testimonials {
    padding: 28px 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 97%;
  }
  h1,.h1 { font-size: 1.41rem; }
  h2,.h2 { font-size: 1.18rem; }
  .container {
    padding: 0 6px;
  }
  .section, .features, .about-short, .about, .call-to-action, .services, .testimonials {
    margin-bottom: 38px;
    padding: 25px 5px;
    border-radius: 13px;
  }
  .form-placeholder, .legal, .thank-you {
    padding: 22px 5px;
    border-radius: 13px;
  }
  .cookie-modal {
    min-width: 0;
    width: 91vw;
    padding: 20px 9px 15px 9px;
  }
}
@media (max-width: 500px) {
  .cookie-modal {
    max-width: 99vw;
  }
  .hero, .section {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}

/* ========== TRANSITIONS & MICRO-INTERACTIONS ========== */
button, .cta-btn, .feature-item, .service-block, .card, .testimonial-card, .cookie-banner, .cookie-modal, .mobile-menu {
  transition: box-shadow 0.15s, background 0.18s, color 0.13s, transform 0.16s;
}

/* ========== ACCENT CLASSES ========== */
.bg-primary { background: #275B37; color: #fff; }
.bg-secondary { background: #B4D6A5; color: #275B37; }
.bg-accent { background: #F7FAED; color: #275B37; }
.text-primary { color: #275B37; }
.text-secondary { color: #B4D6A5; }
.text-accent { color: #F7FAED; }
.rounded-lg { border-radius: 24px; }

/* ========== OVERLAP & Z-INDEX FIXES ========== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 1000;
}

/* ===== END OF STYLE ===== */
