/* Wertvoll Wieder - Playful Dynamic UI CSS */
/* ========== CSS RESET & NORMALIZE ========== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F8F3E3;
  color: #26402D;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3A5743;
  text-decoration: none;
  transition: color .2s cubic-bezier(.55,0,.1,1);
}
a:hover, a:focus {
  color: #A36B1C;
  text-decoration: underline;
  outline: none;
}
button, .btn-primary {
  font-family: 'Inter', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .2s cubic-bezier(.68,-0.55,.27,1.55),
              color .18s cubic-bezier(.68,-0.55,.27,1.55),
              box-shadow .24s;
}
ul, ol {
  padding-left: 24px;
}
ul {
  list-style-type: circle;
}
strong {
  font-weight: 700;
}

/* ========== BRAND COLOR VARIABLES & TYPO ========== */
:root {
  --brand-green: #26402D;
  --brand-green-light: #3A5743;
  --brand-bg: #F8F3E3;
  --brand-white: #FFFFFF;
  --brand-accent: #A36B1C;
  --brand-accent-light: #BB9156;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #3A5743;
  font-weight: 900;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.12;
  color: var(--brand-accent);
  word-break: break-word;
  /* playful underline animation */
  position: relative;
  padding-bottom: 8px;
}
h1::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 60px;
  height: 6px;
  border-radius: 6px;
  background: var(--brand-accent-light);
  animation: playful-underline .8s both cubic-bezier(.65,-0.35,.81,1.57) .25s;
}
@keyframes playful-underline {
  0% { width: 0; opacity: 0; }
  80%{width: 80px; opacity: 1;}
  100% { width: 60px; opacity: 1; }
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--brand-green);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--brand-accent);
}
.subheadline {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--brand-green-light);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ========== LAYOUT: SPACING & CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff9ef;
  border-radius: 24px;
  box-shadow: 0 8px 36px 0 rgba(58,87,67,0.06),
              0 1.5px 10px 0 rgba(171,133,62,0.05);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(163,107,28,0.08);
  padding: 28px 20px 24px 20px;
  transition: box-shadow .21s cubic-bezier(.72,0,.31,1.21),
              transform .18s cubic-bezier(.72,0,.31,1.21);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px rgba(58,87,67,0.14);
  transform: translateY(-3px) scale(1.03) rotateZ(-1deg);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}

.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: #fff;
  box-shadow: 0 1.5px 10px 0 rgba(58,87,67,0.08);
  padding: 20px;
  border-radius: 16px;
  margin: 20px 0 20px 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #25382A;
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 1.07rem;
  color: #25382A;
}
.testimonial-card span {
  font-size: 1rem;
  color: #A36B1C;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

/* Consistent vertical spacing */
section + section {
  margin-top: 30px;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #FFF;
  box-shadow: 0 4px 26px 0 rgba(58,87,67,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 8px 0;
}
header .container {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: space-between;
}
header img {
  max-height: 54px;
  padding: 6px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--brand-green-light);
  border-radius: 10px;
  padding: 6px 14px;
  position: relative;
  transition: background .18s, color .14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-accent-light);
  color: var(--brand-white);
  text-decoration: none;
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: linear-gradient(95deg, var(--brand-accent-light) 70%, var(--brand-accent) 100%);
  color: var(--brand-white);
  border-radius: 26px;
  padding: 12px 32px 12px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 0.5px 9px 0 rgba(58,87,67,0.10);
  margin-left: 16px;
  letter-spacing: 0.02em;
  display: inline-block;
  transition: background .21s cubic-bezier(.68,-0.55,.27,1.55),
              box-shadow .16s cubic-bezier(.68,-0.55,.27,1.55),
              transform .15s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(95deg, var(--brand-accent) 68%, #bb9156 100%);
  box-shadow: 0 5px 16px rgba(163,107,28,0.12),0 2px 11px rgba(42,90,53,0.06);
  color: #fff;
  transform: scale(1.05) translateY(-2px) rotate(-1deg);
}
.btn-primary:active {
  background: var(--brand-accent);
  box-shadow: 0 1.5px 7px rgba(42,90,53,0.09);
  color: #fff;
}

/* ========== FOOTER ========== */
footer {
  background: var(--brand-green);
  color: var(--brand-bg);
  padding: 50px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--brand-accent-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 9px;
  border-radius: 9px;
  transition: background .13s, color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand-accent-light);
  color: var(--brand-green);
}
footer img {
  height: 42px;
}
footer p {
  font-size: 0.98rem;
  opacity: 0.92;
}

/* ========== INTERACTIVE ELEMENTS: HOVER & MICRO-ANIMATIONS ========== */
ul li img, ol li img {
  margin-right: 10px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 5px rgba(183,152,92,0.18));
  transition: transform .18s cubic-bezier(.68,-0.55,.27,1.55);
}
ul li:hover img {
  transform: rotate(-8deg) scale(1.11);
}
strong {
  color: var(--brand-accent);
}

/* Section highlight / playful shadow bubbles */
.section::before {
  content: '';
  position: absolute;
  top: -24px; right: 28px;
  width: 58px; height: 58px;
  background: rgba(163,107,28,0.12);
  border-radius: 50%;
  z-index: 0;
  filter: blur(6px);
  opacity: 0.48;
  pointer-events: none;
}
.section:nth-child(2n)::before {
  left: 24px; right: auto; top: -16px;
  background: rgba(58,87,67,0.16);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 24px;
  top: 20px;
  z-index: 90;
  font-size: 2.2rem;
  background: var(--brand-accent-light);
  color: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background .18s;
  box-shadow: 0 1.5px 9px 0 rgba(58,87,67,0.09);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--brand-accent);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 200;
  background: #fff9ef;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 40px 28px 28px 28px;
  box-shadow: 0 16px 50px rgba(58,87,67,0.17), 0 1.5px 9px 0 rgba(163,107,28,0.10);
  transform: translateX(100%);
  transition: transform .43s cubic-bezier(.52,0,.31,1.27);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 18px; top: 20px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  z-index: 202;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:active {
  background: var(--brand-green-light);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--brand-green);
  font-size: 1.33rem;
  font-weight: 700;
  border-radius: 14px;
  padding: 15px 10px 15px 6px;
  transition: background .17s, color .15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-accent-light);
  color: #fff;
}

/* Hide desktop menu, show burger menu on mobile */
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0; margin-top: 12px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 850px) {
  header .container {
    gap: 9px;
  }
}

/* ========== RESPONSIVE FLEXBOX ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .content-wrapper {
    gap: 16px;
  }
  .section {
    margin-bottom: 34px;
    padding: 28px 7px;
    border-radius: 14px;
  }
  .container {
    padding: 0 9px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-nav {
    gap: 8.5px;
  }
}

@media (max-width:540px){
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
  .btn-primary {
    padding: 11px 13px;
    font-size: .99rem;
    border-radius: 16px;
  }
  .card, .testimonial-card {
    padding: 13px 6px 14px 11px;
    border-radius: 10px;
    font-size: .97rem;
    min-width: 120px;
    max-width: 100%;
  }
  .section {
    padding: 16px 4px;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: #fff7ea;
  color: #26402D;
  box-shadow: 0 -3px 32px rgba(42,90,53,0.12);
  border-top: 3px solid var(--brand-accent-light);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  animation: cookieBannerReveal .8s .6s cubic-bezier(.59,1.99,.27,.84) backwards;
}
@keyframes cookieBannerReveal {
  from { transform: translateY(120px); opacity:0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 7px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 1rem;
  padding: 9px 20px;
  min-width: 110px;
  border-radius: 16px;
  margin: 0;
}
.cookie-banner .btn-secondary {
  background: #f3e9d0;
  color: #26402D;
  border: 1.5px solid #DCCBAA;
  font-weight: 600;
  transition: background .15s, color .14s;
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: #E3D8BF;
  color: #A36B1C;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 3100;
  left: 50%;
  top: 54%;
  transform: translate(-50%,-50%) scale(.97);
  width:90%;
  max-width:420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 19px 45px 0 rgba(58,87,67,0.22);
  padding: 34px 26px 25px 26px;
  animation: cookieModalIn .26s cubic-bezier(.55,1.2,.28,.89) both;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalIn {
  from { transform: translate(-50%,26%) scale(.68); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(.97); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 1.1em;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 0;
  font-size: 1.05rem;
}
.cookie-modal label {
  font-size: 1.02rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-accent-light);
  width: 19px; height: 19px;
  margin-right: 6px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 13px;
  margin-top: 17px;
  justify-content: flex-end;
  width: 100%;
}
.cookie-close {
  position: absolute;
  right: 12px; top: 12px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 1.35rem;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 302;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .12s;
}
.cookie-close:focus, .cookie-close:hover, .cookie-close:active {
  background: var(--brand-green);
  color: #fff;
}

/* ========== MICROANIMATION EFFECTS ========== */
.card, .btn-primary, .main-nav a, .mobile-nav a, .footer-nav a, .testimonial-card, .card-content {
  will-change: transform, box-shadow, background;
}
.testimonial-card {
  transition: box-shadow .15s, transform .15s, background .15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #FCF7F1;
  box-shadow: 0 4px 32px 0 rgba(163,107,28,0.11), 0 1.5px 10px rgba(58,87,67,0.09);
  transform: scale(1.018) translateY(-2px);
}

/* ========== FORM ELEMENTS ========== */
input, textarea, select {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #DCCBAA;
  border-radius: 9px;
  padding: 9px 15px;
  background: #fff;
  margin-bottom: 15px;
  transition: border .15s, box-shadow .13s;
  box-shadow: 0 .5px 8px rgba(58,87,67,0.03);
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-accent)
}
label {
  display: block;
  font-size: 0.99rem;
  font-family: inherit;
  margin-bottom: 3.5px;
}

/* ========== SPECIAL: TYPOGRAPHY EFFECT (DYNAMIC & PLAYFUL) ========== */
h2, h3, .subheadline {
  position: relative;
  z-index: 2;
}
h2::after {
  content: '';
  display: block;
  margin-top: 7px;
  width: 35px;
  height: 4px;
  border-radius: 3px;
  background: var(--brand-accent-light);
  opacity: 0.7;
  margin-left: 0;
  animation: headline-bar .6s cubic-bezier(.61,-0.51,.58,1.44) .16s backwards;
}
@keyframes headline-bar {
  from { width: 0; opacity: 0; }
  to { width: 35px; opacity: 0.7; }
}

/* ========== ANIMATION: ICONS ========== */
ul li img, ol li img {
  transition: transform .16s cubic-bezier(.68,-0.55,.27,1.55);
}
ul li:hover img, ol li:hover img {
  transform: scale(1.13) rotate(-8deg);
}

/* ========== SPECIAL: FAQ ========== */
.section ul li strong {
  display: block;
  color: var(--brand-accent); margin-bottom: 3px;
}

/* ========== A11Y: FOCUS RINGS ========== */
*:focus {
  outline: 2px dashed var(--brand-accent-light);
  outline-offset: 2px;
}

/* ========== Z-INDEX ROOFED ELEMENTS ========== */
header, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 900;
}

/* ========== END ==========

THEME: playful_dynamic (Professional, energetic, warm, with friendly animations)
RESTRICTIONS: No absolute/fixed for content cards; No CSS Grid or Columns; All spacing via flex/gap/margin/padding only. */