/* =========================
   Nature Organic Reset
   ========================= */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #FAF6F2;
  color: #272E24;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ================================
   CSS Custom Properties: Nature Organic Palette
   ================================ */
:root {
  --color-primary: #0B3556;
  --color-secondary: #F8AA07;
  --color-accent: #EEF2F6;
  --color-darkgreen: #36492E;
  --color-green: #508F53;
  --color-earth: #A3815A;
  --color-bone: #FBF9F5;
  --color-brown: #6c4a28;
  --color-bg-section: #f4f2ed;
  --color-bg-card: #FBF9F5;
  --color-text: #272E24;
  --color-text-dark: #1A2123;
  --color-text-light: #F7FAF6;
  --color-card-shadow: rgba(56, 83, 46, 0.07);
  --border-radius-section: 36px;
  --border-radius-card: 22px;
  --border-radius-btn: 24px;
  --shadow-section: 0 6px 32px var(--color-card-shadow);
  --shadow-card: 0 2px 18px var(--color-card-shadow);
}

/* ================================
   Typography: Fonts & Headings
   ================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bone);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
  color: var(--color-darkgreen);
}

/* Headline accent underline */
h2, h1 {
  position: relative;
}
h2::after, h1::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--color-green);
  margin-top: 10px;
}

/* ================================
   Layout Container
   ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ================================
   Spacing & Section Rules
   ================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--border-radius-section);
  box-shadow: var(--shadow-section);
  display: flex;
  flex-direction: column;
}

/* ================================
   Header
   ================================ */
header {
  background: var(--color-bg-card);
  box-shadow: 0 2px 14px 0 rgba(56,83,46,0.05);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 77px;
  min-height: 56px;
}
header img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  z-index: 10;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-darkgreen);
  padding: 8px 0;
  border-radius: 4px;
  transition: color 0.17s, background 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-green);
  background: rgba(80, 143, 83, 0.07);
}

.main-nav .cta.primary {
  background: var(--color-green);
  color: #fff;
  border-radius: var(--border-radius-btn);
  padding: 10px 22px;
  margin-left: 12px;
  font-weight: 700;
  font-size: 1.09rem;
  box-shadow: 0 2px 8px rgba(80,143,83,0.09);
  transition: background 0.18s, transform 0.18s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(168, 129, 90, 0.13);
}

/* Hamburger menu (mobile) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--color-green);
  cursor: pointer;
  z-index: 50;
  margin-left: 18px;
  transition: color 0.16s;
  border-radius: 8px;
  padding: 2px 10px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* ================================
   Mobile Offcanvas Menu
   ================================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-card);
  box-shadow: 0 8px 64px rgba(80,143,83,0.16);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.7,0,0.3,1);
  padding: 0 28px 0 24px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 24px 0 12px 0;
  background: none;
  border: none;
  color: var(--color-green);
  cursor: pointer;
  transition: color 0.16s;
  border-radius: 6px;
  padding: 4px 11px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: var(--color-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  padding-bottom: 24px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  padding: 14px 0 14px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--color-accent);
  transition: color 0.16s;
  outline: none;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-green);
  background-color: rgba(80,143,83,0.08);
  border-radius: 10px;
}


/* ================================
   Hero Section
   ================================ */
.hero {
  background: linear-gradient(115deg, rgba(238,242,246,0.85),rgba(248,170,7,0.05) 90%);
  border-radius: var(--border-radius-section);
  padding: 48px 0 40px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px 0 rgba(80, 143, 83, 0.09);
}
.hero .container {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 12px;
}
.hero h1 {
  color: var(--color-darkgreen);
  font-size: 2.1rem;
  line-height: 1.18;
  font-weight: 800;
}
.hero p {
  font-size: 1.16rem;
  color: var(--color-primary);
  max-width: 640px;
}

/* ================================
   Feature & Card Grids
   ================================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  min-height: 200px;
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.19s;
  border-left: 6px solid var(--color-green);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 10px 36px rgba(80,143,83,0.12);
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
}
.feature img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(80,143,83,0.06);
  padding: 8px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  padding: 28px 18px 22px 22px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px rgba(80,143,83,0.13);
  transform: translateY(-2px) scale(1.01);
}

.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;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-card);
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(80,143,83,0.11);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow 0.16s, transform 0.14s;
  border-left: 6px solid var(--color-green);
  color: var(--color-text-dark);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px rgba(80,143,83,0.13);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card p {
  margin: 0 0 0 0;
  font-size: 1.02rem;
  flex: 1 1 0%;
}
.testimonial-card span {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

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

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-bg-card);
  border-left: 5px solid var(--color-green);
  box-shadow: var(--shadow-card);
  border-radius: 16px;
  padding: 22px 18px 16px 20px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow:0 8px 22px rgba(80,143,83,0.13);
  transform: scale(1.01);
}
.faq-item h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 9px;
}

/* Table styling */
table {
  width: 100%;
  margin-bottom: 20px;
  background: var(--color-bg-card);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
thead th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-green);
  color: #fff;
  padding: 14px 9px;
  font-size: 1.07rem;
}
tbody td {
  padding: 12px 9px;
  font-size: 1rem;
  color: var(--color-darkgreen);
  border-bottom: 1px solid var(--color-accent);
}
tbody tr:last-child td {
  border-bottom: 0;
}

/* Lists */
ul li, ol li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 10px;
}
ul li::before {
  content: '';
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
  background: var(--color-green);
  opacity: 0.7;
}
ol li span {
  font-weight: bold;
  display: inline-block;
  color: var(--color-secondary);
}

/* Contact list icons */
.text-section ul li img {
  width: 22px;
  height: 22px;
  margin-right: 11px;
  margin-bottom: -3px;
}
.address-note {
  color: var(--color-green);
  font-weight: bold;
  font-size: 1.01rem;
  background: rgba(80,143,83,0.10);
  padding: 7px 14px;
  border-radius: 14px;
  display: inline-block;
}

/* ================================
   Button Styles (CTA)
   ================================ */
.cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: var(--border-radius-btn);
  box-shadow: 0 2px 8px rgba(248, 170, 7, 0.09);
  padding: 12px 26px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.15s, transform 0.19s, box-shadow 0.15s;
  margin-top: 12px;
  margin-bottom: 10px;
}
.cta.primary {
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(80, 143, 83, 0.09);
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: scale(1.05) translateY(-1.5px);
  box-shadow: 0 8px 36px 0 rgba(248,170,7,0.13);
}
.cta:hover,
.cta:focus {
  background: var(--color-green);
  color: #fff;
  transform: scale(1.04) translateY(-1px);
  box-shadow: 0 8px 28px 0 rgba(80,143,83,0.12);
}

/* ================================
   Footer
   ================================ */
footer {
  background: var(--color-bg-section);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -3px 28px 0 rgba(80,143,83,0.07);
  margin-top: 56px;
  padding-top: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--color-darkgreen);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  border-radius: 0px 7px 7px 0px;
  transition: color 0.14s, background 0.11s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-green);
  background: rgba(80, 143, 83, 0.09);
}
.footer-contact p {
  font-size: 1rem;
  color: var(--color-brown);
  line-height: 1.5;
}
footer img {
  height: 38px;
}

/* ================================
   Cookie Consent Banner & Modal
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: var(--color-bg-card);
  box-shadow: 0 -3px 22px 0 rgba(80,143,83,0.12);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 20px;
  font-size: 1rem;
  animation: cookieFadeIn 0.7s;
}
@keyframes cookieFadeIn {
  0% {
    opacity: 0;
    transform: translateY(70%);
  }
  70% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.cookie-banner p {
  flex: 1 1 300px;
  color: var(--color-primary);
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner-btn {
  border: none;
  padding: 11px 20px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(80,143,83,0.06);
  transition: background 0.17s, color 0.16s, transform 0.18s;
  cursor: pointer;
}
.cookie-banner-btn.accept {
  background: var(--color-green);
  color: #fff;
}
.cookie-banner-btn.reject {
  background: var(--color-accent);
  color: var(--color-brown);
}
.cookie-banner-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner-btn:hover,
.cookie-banner-btn:focus {
  transform: translateY(-2px) scale(1.05);
  opacity: 1;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 4000;
  background: rgba(34,43,24,0.35);
  align-items: center;
  justify-content: center;
  animation: fadeModalIn 0.38s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeModalIn 0.38s;
}
@keyframes fadeModalIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: var(--color-bg-card);
  border-radius: 30px;
  box-shadow: 0 20px 60px 0 rgba(80,143,83,0.20);
  min-width: 306px;
  max-width: 92vw;
  padding: 38px 28px 30px 28px;
  color: var(--color-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-green);
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-primary);
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: var(--color-darkgreen);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  padding: 7px 0;
  font-size: 1.01rem;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--color-primary);
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--color-accent);
  border-radius: 15px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-toggle input[type="checkbox"]:checked {
  background: var(--color-green);
}
.cookie-toggle input[type="checkbox"]::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px; left: 3px;
  transition: left 0.15s;
}
.cookie-toggle input[type="checkbox"]:checked::before {
  left: 19px;
}
.cookie-category .locked {
  font-size: 1rem;
  color: var(--color-brown);
  margin-left: 8px;
}
.cookie-modal-btn-row {
  display: flex;
  gap: 17px;
  padding-top: 14px;
  flex-wrap: wrap;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1160px) {
  .container { max-width: 960px; }
}
@media (max-width: 920px) {
  .container { max-width: 94vw; }
  .footer-contact p { font-size: 0.96rem; }
}
@media (max-width: 820px) {
  .content-wrapper,
  footer .content-wrapper {
    gap: 18px;
    flex-direction: column;
  }
  .hero .container,
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 768px) {
  /* Burger menu for mobile */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    height: 59px;
    min-height: 45px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .card-container,
  .feature-grid,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .section {
    padding: 28px 8vw;
    margin-bottom: 35px;
  }
  .hero {
    padding: 28px 0 31px 0;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.11rem; }
  .feature, .card, .testimonial-card {
    min-width: unset;
    padding: 21px 12px 18px 12px;
  }
  table {
    font-size: 0.99rem;
  }
  .cookie-modal {
    min-width: 96vw;
    padding: 15vw 5vw 12vw 5vw;
    max-width: 97vw;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  h3 {
    font-size: 0.99rem;
  }
  .container { padding-left: 2vw; padding-right: 2vw; }
  .card, .feature, .testimonial-card {
    padding: 15px 8px 12px 10px;
    min-width: unset;
  }
  .cookie-banner {
    font-size: 0.95rem;
    padding: 10px 6px;
    gap: 9px;
  }
}

/* ================================
   Subtle Nature-Inspired Visuals
   ================================ */
.section, .feature, .card, .testimonial-card, .faq-item {
  /* Organic shape effect */
  border-top-left-radius: calc(var(--border-radius-section) - 10px);
  border-bottom-right-radius: calc(var(--border-radius-section) - 19px);
  position: relative;
  background-image: url('data:image/svg+xml;utf8,<svg width="86" height="64" xmlns="http://www.w3.org/2000/svg"><ellipse fill="%23F8AA07" opacity="0.06" cx="43" cy="39" rx="33" ry="18"/></svg>');
  background-repeat: no-repeat;
  background-position: 99% 91%;
}

.card::before, .testimonial-card::before {
  /* Soft organic shadow shape overlay */
  content: '';
  position: absolute;
  left: -21px;
  bottom: -18px;
  width: 76px;
  height: 46px;
  background: rgba(80,143,83,0.07);
  border-radius: 45% 55% 77% 33%;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.14s;
}
.card:hover::before, .testimonial-card:hover::before {
  opacity: 0.15;
}
.card > *, .testimonial-card > * {
  position:relative;
  z-index:1;
}

/* ================================
   Misc Utility
   ================================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* Process icons (leistungen.html) */
.process-icons {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
}
.process-icons img {
  width: 42px;
  height: 42px;
  filter: brightness(0.8) saturate(0.6) drop-shadow(0 0 5px rgba(80,143,83,0.10));
  border-radius: 30%;
  background: rgba(80,143,83,0.05);
}

/* Address note on kontakt.html */
.address-note {
  font-size: 1.01rem;
  color: var(--color-green);
  background: rgba(80,143,83,0.10);
  border-radius: 12px;
  padding: 5px 13px;
  margin-top: 6px;
}

/* ================================
   Focus Styles
   ================================ */
a:focus, .main-nav a:focus, .footer-nav a:focus, .cta:focus, .mobile-nav a:focus {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 2px;
  background: rgba(248,170,7,0.13);
}

/* ================================
   Animations (Micro-interactions)
   ================================ */
.cta, .cookie-banner-btn, .main-nav a, .footer-nav a, .mobile-nav a, .feature, .card {
  transition: background 0.16s, color 0.14s, box-shadow 0.12s, transform 0.17s;
}

/* ================================
   Accessibility: High Contrast Testimonials
   ================================ */
.testimonial-card {
  background: #fff;
  color: #23291f;
  border-left: 5px solid var(--color-green);
}
.testimonial-card p {
  color: #23291f;
}

/* ================================
   Z-Index Layer Control
   ================================ */
header { z-index: 1000; position: relative; }
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 3000; }

/* ================================
   Print Basics
   ================================ */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #222; }
  .section, .feature, .card, .testimonial-card { box-shadow: none !important; }
}
