/* ===================================================
   RESET & NORMALIZE
=================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8FA;
  color: #113364;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  /* playful_dynamic effect */
  background: linear-gradient(135deg, #F6F8FA 60%, #f4f1fb 100%);
  transition: background 0.4s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0 0 1.5em 1.2em;
  padding: 0;
}
a {
  color: #36A285;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #08c5af;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #113364;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.3rem;
}
strong {
  font-weight: bold;
}
button,
.mobile-menu-toggle {
  font-family: 'Oswald', Arial, sans-serif;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child {
  margin-bottom: 0;
}

/* ===================================================
   FLEXBOX UTILITIES
=================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 16px 0 rgba(54,162,133,0.09);
  padding: 32px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  min-width: 270px;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(54,162,133,0.17);
  transform: translateY(-4px) scale(1.02) rotate(-2deg);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 24px 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 12px 0 rgba(17,51,100,0.11);
  margin: 10px;
  min-width: 280px;
  flex: 1 1 250px;
  transition: transform 0.18s, box-shadow 0.2s;
  border-left: 8px solid #36A285;
}
.testimonial-card:hover {
  transform: scale(1.022) rotate(1.8deg);
  box-shadow: 0 8px 22px 0 rgba(54,162,133,0.22);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.footer-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 32px;
  margin-bottom: 12px;
}
/* ===================================================
   HEADER & NAVIGATION
=================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(17,51,100,0.07);
  position: relative;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #113364;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  padding: 5px 0 4px 0;
  transition: color 0.17s, box-shadow 0.14s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #36A285;
  transition: width 0.25s;
  margin-top: 2px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 50%;
}
.main-nav .cta-button {
  margin-left: 18px;
  padding: 9px 24px !important;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #36A285;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
  z-index: 1202;
}
.mobile-menu-toggle:active {
  background: #08c5af;
}

/* ===================================================
   MOBILE DRAWER MENU
=================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 330px;
  height: 100vh;
  background: #36A285;
  box-shadow: -4px 0 26px rgba(17,51,100,0.17);
  z-index: 1200;
  transform: translateX(110%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 24px 24px 24px;
  transition: transform 0.32s cubic-bezier(0.67, 1.6, 0.32, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  border-radius: 42px;
  padding: 9px 16px;
  font-size: 2rem;
  color: #36A285;
  position: absolute;
  top: 22px;
  right: 22px;
  border: none;
  z-index: 1201;
  box-shadow: 0 2px 8px rgba(54,162,133,0.13);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #113364;
  color: #fff;
}
.mobile-nav {
  margin-top: 46px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.34rem;
  border-radius: 8px;
  line-height: 1.2;
  padding: 10px 10px 8px 10px;
  background: transparent;
  transition: background 0.21s, color 0.14s;
  min-width: 90px;
}
.mobile-nav a:hover {
  background: #fff;
  color: #36A285;
}
.mobile-menu {
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================================
   HERO & ACCENT SECTIONS
=================================================== */
.hero {
  background: linear-gradient(114deg, #36A285 41%, #25bddb 100%); /* Playful energetic bg */
  color: #fff;
  padding: 56px 0 56px 0;
  box-shadow: 0 12px 26px -18px #11336433;
}
.hero h1,
.hero p {
  color: #fff;
  text-shadow: 1px 1px 1px #174d8a97;
}
.hero .cta-button {
  margin-top: 22px;
  background: #fff;
  color: #36A285;
}
.accent-bg {
  background: #fff;
  border-radius: 38px;
  box-shadow: 0 6px 34px -10px #25bddb2a;
}

/* ===================================================
   CTA BUTTON
=================================================== */
.cta-button,
.button,
input[type="submit"] {
  display: inline-block;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 11px 32px;
  background: #36A285;
  color: #fff;
  border-radius: 20px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 10px 0 #36A28534;
  transition: background 0.16s, box-shadow 0.2s, color 0.13s, transform 0.18s;
  text-shadow: none;
}
.cta-button:hover,
.button:hover,
input[type="submit"]:hover {
  background: #113364;
  color: #fff;
  box-shadow: 0 8px 22px 0 #11336436;
  transform: scale(1.056) rotate(-1.5deg);
}
.cta-button:active {
  background: #25bddb;
  color: #fff;
  box-shadow: 0 4px 18px 0 #1133642a;
  transform: scale(0.991);
}

/* Fun, subtle button wiggle animation on hover */
.cta-button:hover {
  animation: playful-wiggle 0.26s linear 1;
}
@keyframes playful-wiggle {
  0% { transform: scale(1) rotate(-2deg); }
  35% { transform: scale(1.06) rotate(3deg); }
  70% { transform: scale(0.98) rotate(-2.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ===================================================
   FEATURES & SERVICE-LIST STYLES
=================================================== */
.feature-list,
.service-list,
.city-list,
.step-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-bottom: 14px;
}
.feature-list li, .service-list li, .city-list li, .step-timeline li {
  position: relative;
  background: #F6F8FA;
  border-radius: 24px;
  padding: 16px 24px 16px 60px;
  margin-bottom: 2px;
  min-height: 48px;
  font-size: 1.08rem;
  color: #113364;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 7px 0 rgba(54,162,133,.07);
  display: flex;
  align-items: center;
  transition: background 0.14s;
}
.feature-list li:hover,
.service-list li:hover {
  background: #25bddb18;
  cursor: pointer;
}
.feature-list li img,
.service-list li img,
.step-timeline li img {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) scale(1.13);
  width: 32px;
  height: 32px;
}

/* Timeline playful accent effect */
.step-timeline {
  counter-reset: steplist 0;
}
.step-timeline li {
  padding-left: 64px;
  border-left: 7px solid #36A285;
  position: relative;
  background: #fff;
  margin-bottom: 24px;
  border-radius: 20px;
  min-height: 52px;
}
.step-timeline li:before {
  counter-increment: steplist;
  content: counter(steplist) ".";
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.1rem;
  color: #25bddb;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.step-timeline li img {
  left: 38px; /* after number */
}

/* Accordion playful accent */
.accordion h3 {
  margin-top: 22px;
  font-size: 1.1rem;
  color: #36A285;
  letter-spacing: 0.04em;
}

/* FAQ Styles */
.faq-list, .faq-snippet ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 #36A28512;
  padding: 22px;
  color: #113364;
  margin-bottom: 8px;
}
.faq-item h3 {
  color: #36A285;
}
.contact-hint {
  margin-top: 16px;
  padding: 14px 20px 12px 20px;
  background: #25bddb17;
  border-radius: 14px;
}

/* ===================================================
   TESTIMONIALS & RATING
=================================================== */
.testimonials {
  background: #F6F8FA;
  padding-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
}
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 16px;
  font-size: 1.12rem;
  color: #113364;
  font-weight: 600;
}
.rating-summary img {
  width: 98px;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #113364;
  margin-bottom: 7px;
}
.testimonial-card strong {
  font-family: 'Oswald', Arial, sans-serif;
  color: #36A285;
  font-size: 1.01rem;
}

/* ===================================================
   ABOUT & TEAMS
=================================================== */
.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px 0 #36A28517;
  padding: 22px 30px 18px 30px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.team-member h3 {
  color: #25bddb;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.qualifications {
  margin: 18px 0;
  padding: 15px 14px;
  background: #25bddb1b;
  border-radius: 12px;
}

/* ===================================================
   REGIONAL LOCATIONS
=================================================== */
.location-detail, .regional-offer {
  margin: 20px 0;
}
.location-map {
  margin: 18px 0 22px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 #36A28512;
  padding: 18px;
  color: #888;
  min-height: 42px;
}

/* ===================================================
   FOOTER
=================================================== */
footer {
  background: #113364;
  color: #fff;
  font-size: 1rem;
  margin-top: 64px;
  padding-top: 38px;
  padding-bottom: 28px;
}
footer img {
  width: 44px;
  margin-bottom: 12px;
}
.footer-menu,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.footer-menu a {
  color: #fff;
  opacity: 0.88;
  transition: opacity 0.13s, color 0.15s;
}
.footer-menu a:hover {
  opacity: 1;
  color: #25bddb;
}
.footer-contact a {
  color: #fff;
  margin-right: 16px;
  font-size: 1rem;
}
.footer-contact img {
  vertical-align: middle;
  width: 18px;
  margin-right: 5px;
  display: inline;
}
footer p, footer span {
  color: #f6f8fa;
}

/* ===================================================
   THANK YOU PAGE
=================================================== */
.thank-you-message, .thank-you {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 3px 16px 0 #36A28521;
  padding: 38px 38px 28px 38px;
  max-width: 520px;
  margin: 0 auto;
}

/* ===================================================
   COOKIE CONSENT BANNER & MODAL
=================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: #fff;
  color: #113364;
  box-shadow: 0 -8px 32px -8px #11336424;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 24px 40px;
  width: 100%;
  gap: 28px;
  transition: transform 0.41s cubic-bezier(.48,1.97,.48,0.98), opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  flex: 1;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-buttons .button, .cookie-buttons button {
  background: #36A285;
  color: #fff;
  border-radius: 16px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.11s;
}
.cookie-buttons .button.settings {
  background: #f2e14b;
  color: #113364;
  font-weight: bold;
}
.cookie-buttons .button.reject {
  background: #f24b4b;
  color: #fff;
}
.cookie-buttons .button:hover {
  background: #25bddb;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,51,100,0.17);
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 44px -8px #11336433;
  padding: 38px 30px 20px 32px;
  width: 100%;
  max-width: 390px;
  min-width: 250px;
  color: #113364;
  z-index: 10012;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: pop-modal 0.3s cubic-bezier(.6,1.6,.54,1);
}
@keyframes pop-modal {
  0% { opacity: 0; transform: scale(0.87) translateY(9px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #113364;
  color: #fff;
  border: none;
  border-radius: 44px;
  padding: 8px 17px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.15s, color 0.12s;
}
.cookie-modal .close-modal:hover {
  background: #f24b4b;
  color: #fff;
}
.cookie-modal h4 {
  font-size: 1.12rem;
  color: #36A285;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F6F8FA;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: bold;
  color: #113364;
}
.cookie-toggle {
  width: 36px;
  height: 22px;
  background: #25bddb27;
  border-radius: 16px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background 0.18s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #36A285;
  border-radius: 50%;
  transition: transform 0.22s, background 0.18s;
}
.cookie-toggle input:checked + .toggle-slider {
  background: #25bddb;
  transform: translateX(13px);
}
.cookie-category.essential .cookie-toggle {
  opacity: 0.35;
}
.cookie-category.essential label:after {
  content: "(immer aktiv)";
  color: #888;
  font-size: 13px;
  font-weight: 400;
  margin-left: 8px;
}

/* ===================================================
   RESPONSIVE DESIGN (Mobile-First)
=================================================== */
@media (max-width: 1025px) {
  .container {
    max-width: 98vw;
  }
  .footer-layout {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .testimonial-slider,
  .team-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-layout {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .container {
    padding: 0 6vw;
  }
  header .container {
    gap: 7px;
    padding: 10px 4vw 10px 4vw;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 22px 0 22px 0;
  }
  .card {
    padding: 20px 12px;
    min-width: 88vw;
  }
  .testimonial-card {
    min-width: 92vw;
    padding: 16px 8vw 18px 8vw;
  }
  .card-container, .testimonial-slider, .team-section, .content-grid, .feature-list, .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .footer-layout {
    gap: 11px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .rating-summary {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .hero {
    padding: 38px 0 30px 0;
  }
  .thank-you-message, .thank-you {
    padding: 18px 6vw 16px 6vw;
    max-width: 96vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 3vw;
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 18px 4vw 14px 4vw;
    max-width: 99vw;
  }
}
@media (max-width: 492px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1.02rem; }
  .footer-layout, .footer-menu, .footer-contact {
    font-size: 0.98rem;
  }
  .accordion, .faq-list, .thank-you-message {
    font-size: 0.98rem;
  }
}

/* ===================================================
   UTILITIES & PLAYFUL MICRO-ANIMATIONS
=================================================== */
ul li::marker, ol li::marker { color: #36A285; }
::selection {
  background: #25bddb;
  color: #fff;
}
.fade-in {
  opacity: 0;
  animation: fadeInPlayful 0.55s 0.1s forwards linear;
}
@keyframes fadeInPlayful {
  0% { opacity: 0; transform: translateY(22px) scale(0.98) rotate(-2.2deg); }
  80% { opacity: 1; transform: translateY(-1px) scale(1.01) rotate(1deg); }
  100% { opacity: 1; transform: none; }
}

/* Playful underline for headings */
h2, .h2 {
  position: relative;
}
h2:after, .h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 64px;
  height: 5px;
  border-radius: 12px;
  background: #f2e14b;
  opacity: 0.85;
  z-index: 0;
}

/* Icons (accent color svg fill for fun, only if used inline) */
svg {
  fill: #36A285;
}

/* ===================================================
   FONT IMPORTS (PROVIDE FALLBACKS)
=================================================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* END */
