/* RESET & NORMALIZE */
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.6;
  background: linear-gradient(135deg, #F4EED6 0%, #8EC2B0 80%, #164A39 100%);
  font-family: 'Roboto', Arial, sans-serif;
  color: #164A39;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 18px;
}
a {
  color: #164A39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #438E73;
  outline: none;
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.15;
  color: #164A39;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
p, li {
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #164A39;
}
p {
  margin-bottom: 1rem;
}
strong {
  font-weight: 700;
}
/* CONTAINER LAYOUTS */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(255,255,255,0.92);
  border-radius: 22px;
  box-shadow: 0px 6px 18px 0 rgba(22,74,57,0.09);
}
/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 3px 16px rgba(22,74,57,0.07);
  padding: 28px 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0px 6px 28px rgba(22,74,57,0.14);
  transform: translateY(-5px) scale(1.012);
}
.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;
  margin-bottom: 24px;
  background: #FAFAFA;
  border-radius: 18px;
  box-shadow: 0px 2px 8px rgba(22,74,57,0.07);
  border: 1px solid #E4EEF2;
  min-width: 0;
}
.testimonial-card p {
  color: #164A39;
  font-size: 1.1rem;
}
.testimonial-card strong {
  color: #438E73;
  font-weight: 700;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #8EC2B0 0%, #F4EED6 80%, #fff 100%);
  box-shadow: 0 2px 12px rgba(140, 194, 176, 0.08);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0;
}
header {
  align-items: stretch;
}
header > img {
  display: none;
  width: 138px;
  margin: 24px 24px 12px 20px;
  align-self: flex-start;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-left: 18px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  color: #164A39;
  padding: 9px 13px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: #8EC2B0;
  color: #fff;
}
.primary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #8EC2B0 10%, #164A39 90%);
  color: #fff !important;
  padding: 11px 32px;
  border: none;
  border-radius: 24px;
  box-shadow: 0px 2px 10px rgba(140, 194, 176, 0.17);
  margin-left: auto;
  margin-right: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  outline: none;
}
.primary-cta:hover, .primary-cta:focus {
  background: linear-gradient(90deg, #438E73 20%, #164A39 100%);
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0px 6px 28px rgba(140, 194, 176, 0.17);
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.0rem;
  background: none;
  border: none;
  color: #164A39;
  padding: 2px 12px;
  margin-right: 12px;
  margin-left: 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 21;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #e1dfd1;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 88vw;
  max-width: 350px;
  background: #F4EED6;
  box-shadow: -2px 0 28px rgba(22,74,57,0.19);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.35s;
  opacity: 0;
  z-index: 1002;
  padding: 32px 18px 24px 22px;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  font-size: 2.1rem;
  color: #164A39;
  border: none;
  cursor: pointer;
  margin-bottom: 18px;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e1dfd1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #164A39;
  padding: 12px 8px;
  font-size: 1.14rem;
  border-radius: 6px;
  margin-bottom: 3px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #8EC2B0;
  color: #fff;
}
@media (max-width: 1080px) {
  .container {
    max-width: 97vw;
  }
  header {
    padding-left: 0;
    padding-right: 0;
  }
  nav {
    gap: 7px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .primary-cta {
    font-size: 1rem;
    padding: 10px 18px;
    margin-right: 2px;
  }
  header > img {
    width: 108px;
    margin: 16px 8px 6px 11px;
  }
}
@media (max-width: 850px) {
  nav {
    gap: 2px;
  }
}
@media (max-width: 760px) {
  nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
  }
  header {
    padding: 0;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding-left: 9vw;
  }
}
/* SECTIONS & LAYOUTS */
section {
  width: 100%;
  margin-bottom: 50px;
}
.container {
  margin-bottom: 0 !important;
}
.section > .container {
  padding: 0 !important;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 10px;
}
.service-list > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 15px;
  padding: 26px 18px 22px 18px;
  margin-bottom: 22px;
  min-width: 210px;
  box-shadow: 0 3px 14px rgba(22,74,57,.07);
  transition: box-shadow 0.19s, transform 0.18s;
}
.service-list > div:hover {
  box-shadow: 0 8px 32px rgba(22,74,57,.16);
  transform: translateY(-4px) scale(1.013);
}
.service-list h3, .service-list h2 {
  margin-bottom: 0.4em;
  font-size: 1.17rem;
  color: #164A39;
}
.service-list p {
  margin-bottom: 0.6em;
}
.service-list span {
  display: inline-block;
  font-size: 1.01rem;
  color: #8EC2B0;
  margin-top: 3px;
}
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
  flex-direction: row;
}
.value-list li {
  flex: 1 1 210px;
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 13px;
  align-items: center;
  padding: 15px 10px 15px 15px;
  box-shadow: 0 2px 9px rgba(22,74,57,0.07);
  margin-bottom: 10px;
  font-size: 1rem;
  color: #164A39;
}
.value-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
/* TABLES (for Zeitplan) */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 9px rgba(22,74,57,0.07);
  border-radius: 13px;
  margin-bottom: 20px;
  overflow: hidden;
}
thead {
  background: #8EC2B0;
  color: #fff;
}
th, td {
  padding: 15px 11px;
  text-align: left;
  border-bottom: 1px solid #E4EEF2;
  font-size: 1rem;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
tr:last-child td {
  border-bottom: none;
}
/* FOOTER */
footer {
  background: linear-gradient(90deg, #8EC2B0 0%, #F4EED6 100%);
  padding: 32px 18px 22px 18px;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 50px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #164A39;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.92;
  padding: 5px 8px;
  border-radius: 7px;
  transition: background 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #438E73;
  color: #fff;
}
.contact-info {
  text-align: center;
  color: #164A39;
  font-size: 0.98rem;
  line-height: 1.5;
}
.contact-info a {
  color: #438E73;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 23px;
  margin-top: 2px;
}
.social-links img {
  width: 33px;
  height: 33px;
  opacity: 0.93;
  transition: opacity 0.17s, transform 0.14s;
}
.social-links img:hover {
  opacity: 1;
  transform: scale(1.11);
}
/* CONTACT FORM INFO */
.contact-form-info {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0px 2px 12px rgba(22,74,57,0.07);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
/* RESPONSIVE DESIGN */
@media (max-width: 830px) {
  .section {
    padding: 30px 5px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .card, .service-list > div, .testimonial-card {
    padding: 18px 12px !important;
  }
}
@media (max-width: 650px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .footer-menu {
    gap: 14px;
    font-size: 0.95rem;
  }
  .section {
    padding: 17px 2px;
  }
  .value-list {
    gap: 7px;
    flex-direction: column;
  }
  .service-list {
    gap: 12px;
    flex-direction: column;
  }
  .service-list > div {
    min-width: unset;
    flex-basis: 98%;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1rem;
  }
  .testimonial-card {
    gap: 8px;
    font-size: 0.96rem;
    padding: 12px 7px !important;
  }
}
@media (max-width: 520px) {
  .contact-form-info {
    padding: 13px 4px;
    font-size: 0.97em;
  }
}
/* FLEX DIRECTION BREAKPOINTS */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #164A39;
  color: #fff;
  padding: 16px 14px 16px 14px;
  box-shadow: 0 -4px 24px rgba(22,74,57,0.11);
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  animation: slideupBanner 0.45s;
}
@keyframes slideupBanner {
  from {transform: translateY(100%);}
  to {transform: translateY(0);}
}
.cookie-banner-message {
  flex: 1 1 210px;
}
.cookie-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  background: #8EC2B0;
  color: #164A39;
  font-weight: 600;
  box-shadow: 0 1px 9px rgba(16,96,68,0.07);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #438E73;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #164A39;
  border: 1px solid #8EC2B0;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #F4EED6;
  color: #164A39;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,74,57,0.35);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinCookieModal 0.32s;
}
@keyframes fadeinCookieModal {
  from {opacity:0;}
  to {opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: #164A39;
  border-radius: 19px;
  box-shadow: 0 10px 44px rgba(22,74,57,0.17);
  padding: 37px 26px 28px 26px;
  max-width: 95vw;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: growModal 0.35s;
}
@keyframes growModal {
  from {transform: scale(0.8);opacity:0;}
  to {transform: scale(1);opacity:1;}
}
.cookie-modal-close {
  position: absolute;
  top: 21px;
  right: 23px;
  background: none;
  border: none;
  font-size: 1.21rem;
  color: #8EC2B0;
  cursor: pointer;
  padding: 0;
  transition: color 0.12s;
  font-weight: 600;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #438E73;
}
.cookie-modal h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.cookie-modal-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 1rem;
}
.cookie-modal-category label {
  font-weight: 500;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #E4EEF2;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  display: inline-block;
  transition: background 0.15s;
  vertical-align: middle;
}
.cookie-toggle[data-checked="true"] {
  background: #8EC2B0;
}
.cookie-toggle-circle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.16s;
}
.cookie-toggle[data-checked="true"] .cookie-toggle-circle {
  left: 18px;
  background: #F4EED6;
}
.cookie-modal .cookie-btn {
  align-self: flex-end;
  margin-top: 8px;
}
/* UTILITY CLASSES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
/* MICRO-INTERACTIONS ANIMATION */
button, .primary-cta, .cookie-btn, .service-list > div {
  transition: background 0.22s, color 0.22s, transform 0.16s, box-shadow 0.16s;
}
button:active, .primary-cta:active, .cookie-btn:active {
  transform: scale(0.96) !important;
}
/* Hide cookie banner/modal on print */
@media print {
  .cookie-banner, .cookie-modal-overlay { display: none !important; }
}
/* SCROLLBAR (modern, unobtrusive) */
::-webkit-scrollbar { width: 10px; background: #F4EED6; }
::-webkit-scrollbar-thumb { background: #8EC2B0; border-radius: 7px; }
::-webkit-scrollbar-track { background: #F4EED6; }
header {
  display: flex;
  flex-direction: row;
}
section {
  padding: 20px 0;
}
/* END CSS */