/* ----------------------
   CSS RESET & BASE STYLE
   ---------------------- */
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, main, 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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  /* Base pastel background */
  font-family: 'Roboto', Arial, sans-serif;
  color: #294C3C;
  background: #F1EFEA;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #294C3C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6AAC83;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #294C3C;
  font-weight: 600;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, address, blockquote, pre {
  font-size: 1rem;
  margin-bottom: 1em;
}
subheadline, .subheadline {
  color: #669B93;
  font-size: 1.1rem;
  font-weight: 400;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 600;
}
em {
  color: #669B93;
  font-style: italic;
}
hr {
  border: none;
  border-bottom: 1.5px solid #E4F4EF;
  margin: 32px 0;
}

/* ----------------------
   LAYOUT CONTAINERS
   ---------------------- */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.content-wrapper {
  padding-left: 0;
  padding-right: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

/* ----------------------
   HEADER & NAVIGATION
   ---------------------- */
header {
  background: #F1EFEA;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 2px 24px 0 rgba(170, 170, 170, 0.06);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.header-bar img {
  height: 52px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 0;
  color: #294C3C;
  border-radius: 12px;
  transition: background-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E4F4EF;
  color: #6AAC83;
}
.cta-button {
  display: inline-block;
  background: #6AAC83;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(106, 172, 131, 0.12);
  transition: background 0.20s, box-shadow 0.18s, transform 0.13s;
}
.cta-button:hover,
.cta-button:focus {
  background: #294C3C;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(106, 172, 131, 0.24);
  text-decoration: none;
}

/* Hamburger Menu Button (mobile) */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #294C3C;
  font-size: 2.15rem;
  border: none;
  border-radius: 12px;
  padding: 4px 18px 4px 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  z-index: 110;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E4F4EF;
  color: #6AAC83;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    padding: 12px 22px;
    font-size: 0.98rem;
  }
  .header-bar {
    padding-right: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    right: 18px;
    top: 20px;
  }
}

/* -------------
   MOBILE MENU
   ------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 28px rgba(170,180,190,0.12);
  z-index: 200;
  transform: translateX(104%);
  transition: transform 0.37s cubic-bezier(.49,1.39,.53,.98);
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  padding: 22px 22px 16px 12px;
  color: #294C3C;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #6AAC83;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 32px 20px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  padding: 12px 0;
  color: #294C3C;
  border-radius: 12px;
  transition: background 0.2s, color 0.12s;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E4F4EF;
  color: #6AAC83;
}
.mobile-menu {
  box-shadow: -6px 0 28px rgba(170,180,190,0.18);
}

@media (min-width: 901px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* --------------
   HERO SECTION
   -------------- */
.hero {
  padding: 54px 0 44px 0;
  background: #FFFAFA;
  border-bottom: 2px solid #e4f4ef;
  border-top: 1.5px solid #FAF3F8;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 0 8px;
}
.hero h1 {
  font-size: 2.44rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 8px;
}
.hero .cta-button {
  margin-top: 8px;
}
.hero .subheadline {
  color: #9CC8B6;
}

@media (max-width: 640px) {
  .hero {
    padding: 33px 0 30px 0;
  }
  .hero h1 {
    font-size: 1.43rem;
  }
}

/* ---------------
   FEATURE GRID
   --------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 28px 0 0 0;
}
.features-grid > div {
  background: #FAFBF7;
  border-radius: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px 0 rgba(170,180,190,0.07);
  gap: 14px;
}
.features-grid h3 {
  font-size: 1.1rem;
  margin-bottom: 0.1em;
  color: #294C3C;
}
.features-grid p {
  font-size: 0.97rem;
  color: #49715D;
}
.features-grid img {
  height: 36px;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .features-grid {
    justify-content: flex-start;
    gap: 18px;
  }
  .features-grid > div {
    padding: 24px 13px;
    min-width: 170px;
  }
}
@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div {
    max-width: 100%;
    min-width: 0;
    align-items: flex-start;
  }
}

/* ------------------
   SERVICE/FAQ LISTS
   ------------------ */
.service-list, .faq-list {
  margin: 0 0 18px 0;
  padding: 0 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list li, .faq-list li {
  font-size: 1rem;
  padding-left: 10px;
  border-left: 4px solid #E4F4EF;
  margin-bottom: 0.5em;
  color: #294C3C;
  background: transparent;
}

/* ------------------
   CTA BANNER
   ------------------ */
.cta-banner {
  margin-top: 28px;
  margin-bottom: 0;
  padding: 0 0 38px 0;
  background: linear-gradient(90deg,#FBF8F2 54%,#F7F7FD 100%);
  border-top: 2px solid #E4F4EF;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 0 0 0;
}
.cta-banner .cta-button {
  font-size: 1.12rem;
}

/* ------------------
   TEXT-IMAGE-SECTION
   ------------------ */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}

/* ------------------
   TESTIMONIAL CARDS
   ------------------ */
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #FFFFFF;
  border-radius: 22px;
  padding: 20px 32px 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px 0 rgba(170, 180, 190, 0.11);
  border-left: 5px solid #6AAC83;
  max-width: 780px;
}
.testimonial-card p {
  color: #294C3C;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #6AAC83;
  font-style: italic;
  margin-left: 12px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 14px;
    gap: 10px;
    max-width: 100%;
  }
}

/* ------------------
   CARD CONTAINER & CARDS
   ------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(106, 172, 131, 0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* ------------------
   CONTACT INFO
   ------------------ */
.contact-info {
  background: #FAFBF7;
  border-radius: 18px;
  padding: 22px 24px;
  margin: 24px 0 16px 0;
  color: #294C3C;
  font-size: 1rem;
  line-height: 1.7;
  box-shadow: 0 2px 9px 0 rgba(140,140,140,0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ----------------------
   FOOTER
   ---------------------- */
footer {
  background: #F1EFEA;
  border-top: 1.5px solid #E4F4EF;
  padding: 40px 0 0 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 30px;
  font-size: 0.97rem;
}
.footer-content img {
  height: 48px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #294C3C;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #6AAC83;
}
address {
  font-style: normal;
  color: #49715D;
  line-height: 1.7;
  margin-bottom: 8px;
}
address a {
  color: #6AAC83;
}
address a:hover,
address a:focus {
  color: #294C3C;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* -------------------
   UTILITY FLEX CLASSES
   ------------------- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------
   SPACING HELPERS
   ------------------- */
.mb-20 {
  margin-bottom: 20px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mt-32 {
  margin-top: 32px;
}
.gap-20 {
  gap: 20px;
}

/* -------------------
  FORM (for Kontakt)
   ------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid #E4F4EF;
  background: #FAFBF7;
  font-size: 1rem;
  width: 100%;
  color: #294C3C;
  margin-bottom: 13px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #6AAC83;
}

/* -------------------
   RESPONSIVE GENERAL
   ------------------- */
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .content-wrapper {
    padding: 0 2px;
  }
  .section {
    padding: 30px 5px;
    margin-bottom: 32px;
  }
}

/* -------------------
   ANIMATIONS & EFFECTS
   ------------------- */
.cta-button, .main-nav a, .mobile-nav a, .mobile-menu-toggle {
  transition: background 0.16s, color 0.16s, box-shadow 0.13s, transform 0.15s;
}
.card,
.features-grid > div,
.testimonial-card {
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover,
.features-grid > div:hover,
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(144,180,140,0.17);
  transform: translateY(-2px) scale(1.0125);
}

/* -------------------
   COOKIE BANNER (fixed)
   ------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: #FFFFFF;
  box-shadow: 0 -2px 18px 0 rgba(120,120,140,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 12px 18px 12px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  transition: transform 0.38s cubic-bezier(.52,1.25,.52,1), opacity 0.24s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #294C3C;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn {
  background: #E4F4EF;
  color: #294C3C;
  border: none;
  border-radius: 16px;
  padding: 10px 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(106, 172, 131, 0.08);
  transition: background 0.16s, color 0.13s;
}
.cookie-btn.accept {
  background: #6AAC83;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
  background: #C4E1D2;
  color: #294C3C;
}
.cookie-btn.accept:hover {
  background: #294C3C;
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(41,76,60,0.14);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  padding: 36px 22px 30px 22px;
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 rgba(106,172,131,0.17);
  max-width: 400px;
  width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-size: 1.15rem;
  color: #294C3C;
  font-family: 'Montserrat',sans-serif;
  margin-bottom: 8px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-cat label {
  color: #49715D;
  font-size: 1.03rem;
  font-family: 'Roboto',sans-serif;
}
.cookie-cat input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #6AAC83;
  cursor: pointer;
}
.cookie-cat.essential label {
  font-weight: 600;
  color: #294C3C;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px; 
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
}
@media (max-width: 440px) {
  .cookie-modal {
    padding: 18px 5px 14px 5px;
    font-size: 0.98rem;
    max-width: 95vw;
  }
}

/* Hide cookie modal/banner by default, show via .active class in JS */
.cookie-banner,
.cookie-modal-overlay {
  display: none;
}
.cookie-banner.active,
.cookie-modal-overlay.active {
  display: flex;
}

/* ------------------------
   END: BlütenBrise Dortmund
   Soft Pastel Flex CSS
   ------------------------ */