/*-------------------------------------------------------------
 CSS Reset & Normalize (mobile first)
-------------------------------------------------------------*/
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;
}
html {
  height: 100%;
  background: #fcfbf7;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fcfbf7;
  color: #232931;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: #18A0A5;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #172532;
  text-decoration: underline;
}

/*-------------------------------------------------------------
 Font Imports
-------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

/*-------------------------------------------------------------
 Brand Color Palette (Soft Pastel Interpretation)
-------------------------------------------------------------*/
:root {
  --primary: #172532;
  --secondary: #18A0A5;
  --accent: #F8F5F2;
  --pastel-rose: #FFE5EC;
  --pastel-mint: #D6F6EB;
  --pastel-blue: #D8E6FB;
  --pastel-yellow: #FFF6D8;
  --pastel-lavender: #EFE3FB;
  --white: #fff;
  --black: #232931;
  --shadow: 0 4px 24px rgba(23, 37, 50, 0.06);
}

/*-------------------------------------------------------------
 Layout Containers & Utility
-------------------------------------------------------------*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 4vw; 
    margin-bottom: 36px;
  }
}

/* Flex Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  min-width: 260px;
  transition: box-shadow 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 10px 32px 0 rgba(23,37,50,0.12);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 22px;
  background: var(--pastel-blue);
  color: #172532;
  box-shadow: var(--shadow);
  transition: background 0.2s, box-shadow 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  line-height: 1.7;
  font-style: italic;
  margin-right: 0.5em;
}
.testimonial-card cite {
  color: var(--secondary);
  font-size: 0.98em;
  font-style: normal;
  letter-spacing: 0.03em;
  margin-left: auto;
}
/* Ensures readability */
.testimonial-card {
  background: var(--pastel-blue);
  color: #172532;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 250px;
  flex: 1 1 280px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px 20px;
  transition: transform 0.12s, box-shadow 0.15s;
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px 0 rgba(23,37,50,0.13);
}
.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px #ece8e8);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    width: 100%;
    min-width: unset;
  }
}

/*-------------------------------------------------------------
 Typography & Headings
-------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 3px 12px #f2f9ff78;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.24rem;
  font-weight: 700;
}
h4,
h5,
h6 {
  font-size: 1rem;
}
p, ul, ol, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.7;
}
p {
  margin-bottom: 10px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 10px;
}
li {
  margin-bottom: 4px;
}

blockquote {
  font-size: 1.12rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  background: var(--pastel-rose);
  border-left: 5px solid var(--secondary);
  padding: 10px 18px;
  border-radius: 11px;
  margin: 6px 0;
}

/*-------------------------------------------------------------
 Nav & Header
-------------------------------------------------------------*/
header {
  width: 100%;
  background: #F8F5F2;
  box-shadow: 0 1px 18px 0 rgba(32,32,49,0.09);
  position: relative;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 16px 12px 16px;
  gap: 18px;
}
.main-nav > a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.06rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.16s, color 0.17s;
}
.main-nav > a:hover,
.main-nav > a:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
  outline: none;
}
.main-nav img {
  height: 36px;
  margin-right: 12px;
}
.cta-primary {
  background: linear-gradient(90deg, #D8E6FB 0%, #D6F6EB 100%);
  color: var(--primary);
  border: none;
  border-radius: 18px;
  font-size: 1.07em;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  padding: 10px 30px;
  box-shadow: 0 2px 10px 0 #e7ebef33;
  cursor: pointer;
  margin-left: 8px;
  transition: box-shadow 0.15s, background 0.18s, color 0.18s;
  text-align: center;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg, #EFE3FB 0%, #FFE5EC 100%);
  color: var(--secondary);
  box-shadow: 0 8px 18px 0 #acb4c822;
  outline: none;
  text-decoration: none;
}

/*-------------------------------------------------------------
 Mobile Main Navigation
-------------------------------------------------------------*/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pastel-blue);
  color: var(--primary);
  font-size: 2.15rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 999;
  box-shadow: 0 4px 10px 0 #c8e3ea36;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
  outline: none;
  display: none;
}
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Mobile Menu Drawer */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--accent);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1999;
  transform: translateX(-110vw);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.6,.05,.5,1.2), opacity 0.38s;
  box-shadow: 0 0 60px 0 #a5b1b833;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: var(--pastel-lavender);
  color: var(--secondary);
  border: none;
  border-radius: 50%;
  margin: 24px 22px 8px 0;
  width: 42px;
  height: 42px;
  box-shadow: 0 2px 8px 0 #d1c3e736;
  cursor: pointer;
  transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-rose);
  color: var(--primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  align-items: flex-start;
  padding: 24px 36px;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.2rem;
  border-radius: 16px;
  padding: 12px 10px;
  margin: 0;
  width: 100%;
  display: inline-block;
  background: none;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
  outline: none;
}

/*-------------------------------------------------------------
 Main & Section spacings for mobile/desktop
-------------------------------------------------------------*/
main {
  background: transparent;
  padding-top: 8px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
}

/* Text section style */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--accent);
  border-radius: 13px;
  padding: 20px 16px;
}
.text-section ul {
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  .text-section {
    padding: 14px 4px;
  }
}

/* Map embed (Kontakt) */
.map-embed {
  background: var(--pastel-mint);
  color: var(--primary);
  border-radius: 14px;
  padding: 10px 14px;
  margin-top: 12px;
  font-size: 1.04em;
}

/*-------------------------------------------------------------
 Footer 
-------------------------------------------------------------*/
footer {
  background: var(--pastel-mint);
  padding: 40px 0 24px 0;
  width: 100%;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 12px 0 #aebebd18;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 4px;
}
.footer-menu a {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.02em;
  transition: text-decoration 0.13s, color 0.14s;
  padding: 4px 0;
}
.footer-menu a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.brand-info {
  text-align: center;
  color: var(--primary);
  font-size: 1.02em;
  padding: 0 8px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}
.social-links a img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px #d6f6eb66);
  transition: filter 0.12s, transform 0.13s;
}
.social-links a:hover img {
  filter: drop-shadow(0 3px 14px #18a0a555) brightness(0.94);
  transform: scale(1.09) rotate(-4deg);
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-menu {
    justify-content: flex-start;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  footer {
    padding: 24px 0 14px 0;
    border-radius: 18px 18px 0 0;
  }
  .brand-info {
    font-size: 0.98em;
  }
}

/*-------------------------------------------------------------
 Forms & Buttons (if used)
-------------------------------------------------------------*/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1em;
}
input, textarea, select {
  background: var(--white);
  border: 1px solid #e1e5eb;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
  width: 100%;
  box-shadow: 0 1px 4px 0 #e6ebee20;
  transition: border 0.12s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--secondary);
  background: #f7fcfa;
}
button {
  font-weight: 600;
  border-radius: 17px;
  border: none;
  padding: 9px 26px;
  background: var(--pastel-blue);
  color: var(--primary);
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.13s, color 0.13s;
}
button:hover, button:focus {
  background: var(--pastel-mint);
  color: var(--secondary);
  box-shadow: 0 5px 12px #cde6e875;
}

/*-------------------------------------------------------------
 Animations / Transitions
-------------------------------------------------------------*/
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: none; }
}
@keyframes fadeInSlideIn {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: none; }
}

.section, .feature-item, .testimonial-card, .card {
  animation: fadeInUp 0.8s cubic-bezier(.4,1,.2,1); 
}

/*-------------------------------------------------------------
 Cookie Consent Banner (fixed)
-------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent);
  border-top: 5px solid var(--pastel-blue);
  box-shadow: 0 -2px 18px #d8e6fb44;
  padding: 20px 18px 20px 18px;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s;
}
.cookie-banner__txt {
  color: var(--primary);
  font-size: 1.05em;
  font-family: 'Open Sans', sans-serif;
  max-width: 450px;
  margin-right: 18px;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1em;
  border: none;
  border-radius: 16px;
  padding: 10px 26px;
  cursor: pointer;
  min-width: 120px;
  transition: background 0.15s, color 0.14s, box-shadow 0.12s;
  box-shadow: 0 1px 6px #cde6e85a;
}
.cookie-btn.accept {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: var(--pastel-rose);
  color: var(--secondary);
}
.cookie-btn.reject {
  background: var(--pastel-rose);
  color: var(--secondary);
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--pastel-lavender);
  color: var(--primary);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 8px 18px 8px;
  }
  .cookie-banner__txt {
    margin-right: 0;
    max-width: none;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3100;
  background: rgba(23, 37, 50, 0.23);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  transition: background 0.28s;
}
.cookie-modal {
  background: var(--accent);
  border-radius: 24px;
  box-shadow: 0 6px 40px #a5b1b850;
  max-width: 94vw;
  min-width: 310px;
  width: 390px;
  padding: 32px 26px;
  animation: fadeInUp 0.6s cubic-bezier(.55,1,.20,1.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 22px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 50%;
  width: 36px; height: 36px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e8f0f8;
  color: var(--secondary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: var(--pastel-blue);
  border-radius: 14px;
  padding: 10px 14px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
}
.cookie-toggle {
  accent-color: var(--secondary);
  width: 20px; height: 20px;
  cursor: pointer;
}
.cookie-category--essential {
  color: var(--secondary);
  opacity: 0.80;
}

/*-------------------------------------------------------------
 Responsive Adjustments (Mobile First)
-------------------------------------------------------------*/
@media (max-width: 650px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.13rem; }
  .container { padding: 0 5px; }
}
@media (max-width: 500px) {
  .feature-item,
  .testimonial-card,
  .text-section {
    padding: 10px 7px;
    border-radius: 10px;
    gap: 10px;
  }
  .section { padding: 18px 0; border-radius: 10px; }
  .card { padding: 9px 6px; border-radius: 8px; }
}

/* Force min spacing between all cards/sections */
.feature-item,
.card, .testimonial-card, .section {
  margin-bottom: 20px !important;
}

/* Prevent overlap */
.feature-grid > * + *,
.card-container > * + * {
  margin-left: 0 !important;
}

/*-------------------------------------------------------------
 Extra Visual Style: Soft Pastel/dreamy overlays (optional)
-------------------------------------------------------------*/
.section {
  /* Dreamy glow effect */
  box-shadow: 0 4px 36px 0 #d8e6fb4a, 0 2px 6px 0 #17253207;
}

.feature-item, .testimonial-card, .card {
  background: linear-gradient(120deg, var(--accent) 80%, var(--pastel-blue) 120%);
}

/*-------------------------------------------------------------
 Micro-interactions, Hover effects
-------------------------------------------------------------*/
.cta-primary:active {
  transform: scale(0.96);
}
.card:active,
.feature-item:active {
  transform: scale(0.97);
}

/*-------------------------------------------------------------
 Hide elements for accessibility (for example, modal overlay)
-------------------------------------------------------------*/
.cookie-modal-overlay[aria-hidden="true"] {
  display: none;
  pointer-events: none;
}

/*-------------------------------------------------------------
 End of style.css
-------------------------------------------------------------*/
