/*------------------------*
  CSS RESET & NORMALIZATION
 *------------------------*/
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;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 16px;
  background: #fff8f3;
  /* Soft, subtly warm background for 'dreamy' feel */
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #3E4C59; /* Gentle dark, for readability */
  background: #fcfbf7;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


/*-------------*
  BRAND COLORS
 *-------------*/
:root {
  --primary: #2962FF;
  --primary-pastel: #bfd6ff;  /* Soft pastel blue */
  --accent: #FFD600;
  --accent-pastel: #FFEF94;   /* Pastel yellow */
  --pastel-pink: #FFE1EE;
  --pastel-peach: #FFF4E6;
  --pastel-mint: #D9F6EC;
  --pastel-purple: #e9e8fc;
  --pastel-green: #e0f8d8;
  --secondary: #FDFDFD;
  --header-bg: #fcfaf7;
  --footer-bg: #f8f5ff;
  --shadow: 0 3px 18px 0 rgba(44, 43, 61, 0.07);
  --shadow-hover: 0 6px 24px 0 rgba(44, 43, 61, 0.14);
  --border: #efeeee;
  --dark: #2C3852;
  --white: #fff;
  --error: #ff5460;
}

/*--------------*
  TYPOGRAPHY
 *--------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #25407B;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  color: #2C3852;
}
h2 {
  font-size: 1.7rem;
  color: #3163B5;
  margin-bottom: 12px;
  margin-top: 24px;
}
h3 {
  font-size: 1.2rem;
  color: #485B90;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 7px;
  color: #437fa1;
}
p, ul, ol, li, a, blockquote, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: #425068;
}
p, li, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 12px;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
alist:before, olist:before {
  color: var(--accent);
  font-weight: bold;
}

blockquote {
  background: var(--pastel-pink);
  border-left: 6px solid var(--accent);
  padding: 16px 20px;
  font-style: italic;
  border-radius: 12px;
  margin-bottom: 14px;
  color: #1B2C3A;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.28s;
}
a:hover, a:focus {
  color: #00B6F7;
  text-decoration: underline;
}

/* Buttons */
.cta-button, button, .button, .btn {
  font-family: 'Fredoka', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--primary-pastel), var(--pastel-pink));
  color: #27448b;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  margin-top: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.22s, color 0.22s, box-shadow 0.24s, transform 0.14s;
  outline: none;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-button:hover, button:hover, .button:hover, .btn:hover {
  background: linear-gradient(90deg, var(--accent-pastel), var(--pastel-green));
  color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.03);
}
.cta-button:focus, button:focus, .button:focus, .btn:focus {
  outline: 2px solid var(--primary);
}

/*-------------*
  LAYOUT
 *-------------*/
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section, .features-section, .about-section, .contact-section, .services-section, .testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(120deg, var(--pastel-mint) 45%, var(--pastel-pink) 100%);
  padding: 48px 0 36px 0;
  margin-bottom: 28px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  box-shadow: var(--shadow);
}
.hero-section h1 {
  margin-bottom: 18px;
}
.hero-section p {
  font-size: 1.13rem;
  margin-bottom: 10px;
}

/*-------------------*
  FLEXBOX LAYOUTS
 *-------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  background: var(--pastel-mint);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px 18px 18px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.23s, background 0.23s, transform 0.14s;
}
.feature-grid > div:hover {
  background: var(--pastel-peach);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.025);
}
.feature-grid img {
  width: 54px;
  height: 54px;
  margin-bottom: 13px;
  background: var(--accent-pastel);
  border-radius: 100%;
  padding: 8px;
}
.feature-grid h3 {
  text-align: center;
  margin-bottom: 7px;
}

/* Card/Feature Lists (ul/ol) */
.tips-list ul, .category-filters ul, .activity-filters ul, .area-highlights ul, .services-section ul, .features-section ul, .faq-snippets ul, .newsletter-signup ul, .history-timeline ul {
  list-style-type: disc;
  margin-left: 22px;
  margin-top: 0;
  margin-bottom: 0px;
  padding-bottom: 0px;
  color: #5A6282;
}
.tips-list li, .category-filters li, .activity-filters li, .area-highlights li, .services-section li, .features-section li {
  font-size: 1rem;
  margin-bottom: 11px;
  padding-left: 2px;
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--pastel-purple);
  border-radius: 18px;
  box-shadow: var(--shadow);
  color: #182437;
  flex-wrap: wrap;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 1.09rem;
  background: none;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: #1A1825;
}
.testimonial-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.testimonial-details .name {
  font-weight: 600;
  color: #2C3852;
}
.testimonial-details .stars {
  font-size: 1.15rem;
  color: #FFAF37;
  letter-spacing: 0.11em;
}

/* About / Team Profiles */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
  margin-top: 10px;
}
.team-profiles > div {
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 250px;
  background: var(--pastel-pink);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px 15px 18px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.21s, background 0.21s;
}
.team-profiles > div:hover {
  background: var(--pastel-mint);
  box-shadow: var(--shadow-hover);
}
.team-profiles img {
  width: 52px;
  height: 52px;
  margin-bottom: 13px;
  border-radius: 100%;
  background: var(--accent-pastel);
  padding: 9px;
}
/* Iconed List */
.values-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 20px 0;
  align-items: center;
}
.values-icons li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 1rem;
  background: var(--pastel-green);
  border-radius: 13px;
  padding: 8px 16px 8px 8px;
}
.values-icons img {
  width: 28px; height: 28px;
  background: var(--white);
  border-radius: 50%;
  padding: 4px;
}

/* History Timeline */
.history-timeline {
  background: var(--pastel-peach);
  border-radius: 16px;
  padding: 14px 20px 14px 16px;
  box-shadow: var(--shadow);
  margin-top: 14px;
  margin-bottom: 8px;
}

/* Contact Info Blocks */
.contact-short-info, .address-block, .opening-hours, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 8px;
}
.contact-short-info > div, .address-block, .opening-hours, .contact-details {
  background: var(--pastel-purple);
  border-radius: 12px;
  padding: 10px 18px 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}
.contact-short-info img, .address-block img, .opening-hours img, .contact-details img {
  width: 32px;
  height: 32px;
  background: var(--accent-pastel);
  padding: 5px;
  border-radius: 100%;
}

/* Special notes / Info boxes */
.special-notes {
  background: var(--pastel-green);
  color: #173033;
  border-radius: 11px;
  margin-top: 17px;
  margin-bottom: 7px;
  padding: 9px 15px 9px 14px;
  font-size: 1rem;
  box-shadow: var(--shadow);
}

/* FAQ, Newsletter, Social, chip-style elements */
.faq-snippets, .newsletter-signup, .social-links {
  margin-bottom: 22px;
  margin-top: 10px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.social-links a:hover img {
  box-shadow: var(--shadow-hover);
  transform: scale(1.09);
}

/* Card Collections */
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 330px;
}

/* Flex helper classes for text-image layouts */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Misc Lists */
.opt-out-links ul {
  margin-left: 18px;
  margin-bottom: 8px;
}
.opt-out-links li {
  margin-bottom: 9px;
}

.links-to-pages {
  margin-top: 24px;
}
.links-to-pages a {
  color: var(--primary);
  font-size: 1.06em;
  font-weight: 500;
}
.links-to-pages a:hover {
  color: var(--accent);
}

/* Mood/Weather widgets */
.weather-widget {
  display: flex;
  align-items: center;
  background: var(--pastel-mint);
  border-radius: 12px;
  padding: 8px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.weather-widget img {
  width: 32px; height: 32px; margin-right: 10px; background: var(--accent-pastel);
  border-radius: 50%; padding: 4px;
}
.mood-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 18px 0 0 0;
}
.mood-icons img {
  width: 30px; height: 30px;
  background: var(--pastel-pink);
  border-radius: 30px;
  padding: 3px;
}

/*------------------*
   HEADER & NAV
 *------------------*/
header {
  background: var(--header-bg);
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 44;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 46px;
  width: auto;
  border-radius: 16px;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Fredoka', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  padding: 7px 17px;
  border-radius: 21px;
  color: #224881;
  background: transparent;
  transition: background 0.21s, color 0.22s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--pastel-pink);
  color: var(--primary);
}

/* Mobile Burger Icon */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: var(--accent-pastel);
  border: none;
  border-radius: 13px;
  padding: 3px 12px;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.17s;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
}

/* Mobile Menu Overlay + Animations */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.8, .01, .16, 1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  align-self: flex-end;
  padding: 20px 24px 8px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 36px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Fredoka', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #1a2a3a;
  font-size: 1.25rem;
  border-radius: 14px;
  padding: 9px 16px;
  margin-bottom: 6px;
  background: var(--pastel-peach);
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover {
  background: var(--pastel-mint);
  color: var(--primary);
}

/*------------------*
   FOOTER
 *------------------*/
footer {
  background: var(--footer-bg);
  width: 100%;
  margin-top: 40px;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 15px 14px 15px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #4860a1;
}
.footer-nav a {
  color: #4860a1;
  transition: color 0.14s;
}
.footer-nav a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.footer-contact {
  color: #5692a1;
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 6px;
}

/*----------------------------*
  COOKIE CONSENT BANNER & MODAL
 *----------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--pastel-mint), var(--pastel-pink));
  color: #2C3852;
  box-shadow: 0 -3px 22px 0 rgba(44,43,61,0.18);
  z-index: 1200;
  padding: 18px 16px 18px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  justify-content: center;
  animation: cookiebanner-in 0.7s 0.1s both;
}
@keyframes cookiebanner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  max-width: 450px;
  color: #294e6a;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 28px;
  border-radius: 23px;
  border: none;
  font-family: 'Fredoka', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  background: var(--accent-pastel);
  color: var(--primary);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.15s, color 0.16s, transform 0.13s;
}
.cookie-banner button:hover {
  background: var(--pastel-peach);
  color: var(--dark);
  transform: scale(1.045);
}
.cookie-banner .cookie-settings-btn {
  background: var(--pastel-purple);
  color: #244180;
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top:0; bottom:0;
  background: rgba(44, 43, 61, 0.21);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1251;
  animation: cookie-modal-fadein 0.32s linear;
}
@keyframes cookie-modal-fadein{
 from{ opacity:0; } to{ opacity:1; }
}
.cookie-modal .cookie-modal-content {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-hover);
  padding: 36px 20px 18px 20px;
  max-width: 350px;
  width: 98%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 14px;
  font-size: 1.35rem;
  background: transparent; border: none; color: #9ca1c7;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2;
}
.cookie-modal-close:hover { color: var(--primary); }
.cookie-modal-content h3 {
  font-size: 1.3rem; margin-bottom: 9px; text-align:center;
  font-family: 'Fredoka', 'Roboto', Arial, sans-serif; color: #224881;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 7px;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  background: var(--pastel-mint);
  border-radius: 11px;
  padding: 8px 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-categories input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px; height: 18px;
  border-radius: 6px;
}
.cookie-category-essential [type="checkbox"] {
  display: none;
}
.cookie-category-essential span:after {
  content:' (immer aktiv)';
  color:#6aa096; margin-left:6px; font-size:0.88em;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: stretch;
  margin-top: 10px;
}
.cookie-modal-content button {
  padding: 8px 0;
  border-radius: 18px;
  border: none;
  font-family: 'Fredoka', 'Roboto', Arial, sans-serif;
  background: var(--pastel-peach);
  color: #234276;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.14s, color 0.11s, transform 0.11s;
}
.cookie-modal-content button:hover {
  background: var(--pastel-mint);
  color: var(--primary);
  transform: scale(1.046);
}

/*------------------------*
  RESPONSIVE DESIGN
 *------------------------*/
@media (max-width: 1020px) {
  .container {
    max-width: 90vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .team-profiles, .feature-grid, .content-grid, .card-container, .card-grid {
    gap: 16px;
  }
}

@media (max-width: 900px){
  .container { padding-left: 14px; padding-right: 14px; }
  .feature-grid > div, .team-profiles > div {
    min-width: 170px; max-width: 99%;
  }
  .main-nav {
    gap: 9px;
  }
}
@media (max-width: 740px){
  header .container {
    flex-direction: row;
    gap: 8px;
    justify-content: space-between;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 730px){
  .feature-grid, .team-profiles, .content-grid {
    flex-direction: column !important;
    align-items: stretch;
    gap: 20px;
  }
  .feature-grid > div, .team-profiles > div {
    max-width: 100%; min-width: 98px;
  }
  .values-icons {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .contact-short-info, .address-block, .opening-hours, .contact-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .links-to-pages {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 600px){
  .section, .features-section, .about-section, .contact-section, .services-section, .testimonials-section {
    padding: 22px 3vw;
    margin-bottom: 38px;
  }
  .hero-section {
    padding: 25px 0 20px 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    font-size: 1.04em;
  }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.1rem; }
  .footer-contact { font-size: 0.92rem; }
}
@media (max-width: 480px){
  .cookie-banner { flex-direction: column; gap: 12px; padding: 12px 8px; }
}
@media (max-width: 370px){
  h1, h2, h3, p { word-break: break-word; }
  .mobile-nav a { font-size: 1.07rem; }
}

/*------------------------*
  MICROINTERACTIONS
 *------------------------*/
.cta-button, button, .button, .btn, .feature-grid > div, .team-profiles > div, .special-notes, .testimonial-card, .card {
  transition: box-shadow 0.22s, background 0.19s, transform 0.13s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  background: var(--pastel-peach);
  transform: translateY(-4px) scale(1.02);
}

ul li::marker {
  color: var(--accent);
}

::-webkit-scrollbar {
  width: 10px; background: var(--pastel-peach);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-pink); border-radius: 7px;
}

/*----------------------*
   HIDE IRRELEVANT
 *----------------------*/
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }
@media (max-width: 740px){
  .main-nav { display: none; }
  .mobile-menu { display: flex; }
}

/* Hide cookie modal by default */
.cookie-modal {
  display: none;
}
.cookie-modal.open {
  display: flex;
}

/* Hide banner if not shown */
.cookie-banner.hide {
  display: none !important;
}

/* Accessibility helper for focus-visible */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/*-------------------*
   Z-INDEX STANDARDS
 *-------------------*/
header { z-index: 44; }
.mobile-menu { z-index: 101; }
.cookie-banner { z-index: 1200; }
.cookie-modal { z-index: 1251; }

/* Ensure minimum spacing around all card/section elements */
.section, .features-section, .about-section, .contact-section, .services-section, .testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid, .content-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}
/*-------------------------------------*
 END OF FAMILIENZEIT HAMBURG STYLES
 *-------------------------------------*/
