/* CSS RESET & NORMALIZE */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; border: 0; font-size: inherit; font-family: inherit; }
body { background: #fff; color: #214662; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: #214662; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #A8C256; outline: none; }
ul, ol { list-style: none; padding: 0; }
button { background: none; font: inherit; border: none; cursor: pointer; transition: background 0.12s, color 0.12s, box-shadow 0.2s; }
:focus-visible { outline: 2px solid #A8C256; outline-offset: 2px; }

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #214662;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.625rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p, li, span, strong { font-family: 'Open Sans', Arial, sans-serif; font-weight: 400; font-size: 1rem; color: #214662; }
strong { font-weight: 600; }
.subheadline { font-size: 1.125rem; font-weight: 400; color: #537189; margin-bottom: 18px; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 18px; box-shadow: 0 2px 12px rgba(33,70,98,0.04); }

/* FLEX LAYOUTS: CARD & FEATURE, ETC. */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: #fff; border-radius: 14px; box-shadow: 0 2px 8px rgba(33,70,98,0.07); margin-bottom: 20px; position: relative; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 8px 36px rgba(33,70,98,0.10); }
.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-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 32px; }
.testimonial-card { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding: 22px 26px; background: #F6E9C1; border-radius: 14px; box-shadow: 0 2px 10px rgba(33,70,98,0.07); min-width: 240px; flex: 1 1 270px; max-width: 390px; }
.feature-list, .service-list, .destination-list { display: flex; flex-direction: column; gap: 15px; padding-left: 0; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.icon-row { display: flex; gap: 28px; margin-top: 18px; flex-wrap: wrap; }
.icon-row span { display: flex; align-items: center; gap: 8px; font-size: 1rem; color: #214662; background: #fff; border-radius: 8px; padding: 6px 14px; box-shadow: 0 1px 3px rgba(33,70,98,0.04); }

.service-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.service-grid > div { flex: 1 1 260px; background: #fff; border-radius: 12px; box-shadow: 0 1px 7px rgba(33,70,98,0.06); padding: 22px 18px; margin-bottom: 20px; min-width: 220px; }

.rating-summaries { margin-top: 24px; background: #F6E9C1; border-radius: 11px; padding: 18px 20px; box-shadow: 0 1px 6px rgba(33,70,98,0.06); }

.text-section { margin-bottom: 12px; }

.text-section img { display: inline-block; margin-right: 6px; vertical-align: middle; width: 18px; height: 18px; }

.tag-filter { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 20px; }
.tag {
  display: inline-block;
  border-radius: 12px;
  padding: 3px 13px;
  font-size: 0.92rem;
  font-weight: 600;
  background-color: #E9F3DB;
  color: #537189;
  margin-right: 6px;
  margin-bottom: 6px;
  transition: background 0.2s;
}
.tag:hover { background: #A8C256; color: #fff; }

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  min-width: 120px;
  padding: 12px 30px;
  margin-top: 18px;
  margin-bottom: 10px;
  border-radius: 24px;
  background: #fff;
  color: #214662;
  border: 1.5px solid #214662;
  box-shadow: 0 2px 8px rgba(33,70,98,0.05);
  transition: background 0.17s, color 0.17s, box-shadow 0.2s;
  cursor: pointer;
}
.button.primary {
  background: #214662;
  color: #fff;
  border-color: #214662;
}
.button.primary:hover, .button.primary:focus {
  background: #A8C256;
  border-color: #A8C256;
  color: #fff;
  box-shadow: 0 6px 30px rgba(168,194,86,0.10);
}
.button:hover, .button:focus {
  background: #A8C256;
  color: #fff;
  border-color: #A8C256;
  box-shadow: 0 4px 18px rgba(168,194,86,0.10);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #E7EDF3;
  position: relative;
  z-index: 100;
  padding-top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 18px;
}
header img { height: 44px; width: auto; }
nav.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #214662;
  opacity: 0.95;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
nav.main-nav a:hover {
  background: #F6E9C1;
  color: #A8C256;
}
.header .button.primary { margin-left: 20px; }

/* HERO SECTION */
.hero {
  background: #F6E9C1;
  padding: 48px 0 42px 0;
  border-radius: 0 0 26px 26px;
  margin-bottom: 54px;
  min-height: 170px;
  box-shadow: 0 3px 14px rgba(33,70,98,0.04);
}
.hero .container { align-items: center; justify-content: center; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
.hero h1 {
  font-size: 2.5rem;
  color: #214662;
  margin-bottom: 10px;
}

/* FORMS */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.form-fields p span { color: #7B8A99; font-style: italic; font-size: 0.98rem; }
.mini-form {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  margin-top: 18px;
}
.mini-form .button { min-width: 110px; margin: 0; }

/* FOOTER */
footer {
  margin-top: 40px;
  background: #fff;
  border-top: 1.5px solid #E7EDF3;
  padding: 38px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: flex-start; }
.quick-links, .legal-links, .social-media {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.99rem;
  color: #537189;
  align-items: center;
}
.quick-links a, .legal-links a { color: #537189; opacity: 0.85; transition: color 0.17s; }
.quick-links a:hover, .legal-links a:hover { color: #A8C256; }
.social-media a img { width: 26px; height: 26px; margin-top: 0; }
.branding {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.97rem;
  color: #7B8A99;
}
.branding img { width: 42px; height: 42px; }

/* TESTIMONIALS */
.testimonials, .testimonial-row { width: 100%; }
.testimonial-card {
  color: #214662 !important;
  background: #F6E9C1;
  border-left: 3px solid #A8C256;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(33,70,98,0.07);
  min-width: 220px;
  max-width: 430px;
}
.testimonial-card strong, .testimonial-card div strong { color: #214662; font-size: 1.04rem; }
.stars {
  color: #A8C256;
  font-size: 1.102rem;
  margin-left: 3px;
  letter-spacing: 0.08em;
  font-family: 'Montserrat', sans-serif;
}

/* RATINGS AND STATEMENTS */
.rating-summaries ul { padding-left: 18px; margin-top: 8px; color: #214662; opacity: 0.87; }
.rating-summaries li { margin-bottom: 4px; list-style: disc; }

/* LEGAL SECTIONS */
.legal {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(33,70,98,0.055);
  padding: 42px 22px;
  margin-top: 40px;
}
.legal .text-section { margin-top: 24px; }

/* CONFIRMATION PAGE */
.confirmation-message { font-size: 1.15rem; color: #537189; margin-top: 15px; margin-bottom: 20px; }

/* CTA SECTION ("Werden Sie Teil…") */
.cta .content-wrapper { align-items: center; text-align: center; gap: 18px; }

/* SECTION STYLES */
.features, .services, .contact, .contact-info, .contact-form, .about, .legal, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,70,98,0.04);
}
.features ul, .feature-list { gap: 13px; padding-left: 0; }

/* COOKIES CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  width: 100vw;
  background: rgba(246,233,193, 0.98);
  border-top: 1.5px solid #E7EDF3;
  box-shadow: 0 -2px 18px rgba(33,70,98,0.10);
  padding: 22px 10px 16px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.56,-0.02,.38,1.11);
}
#cookie-consent-banner[hidden] { display: none !important; }
#cookie-consent-banner .cookie-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 19px;
  padding: 8px 18px;
  min-width: 100px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  border: 1.5px solid #214662;
  color: #214662;
  margin-right: 10px;
  margin-bottom: 4px;
  transition: background 0.16s, color 0.16s, border-color 0.16s, box-shadow 0.19s;
}
#cookie-consent-banner .cookie-btn.primary {
  background: #214662;
  color: #fff;
  border-color: #214662;
}
#cookie-consent-banner .cookie-btn.primary:hover,
#cookie-consent-banner .cookie-btn.primary:focus {
  background: #A8C256;
  border-color: #A8C256;
  color: #fff;
}
#cookie-consent-banner .cookie-btn:focus, #cookie-consent-banner .cookie-btn:hover {
  background: #A8C256;
  color: #fff;
  border-color: #A8C256;
  box-shadow: 0 2px 12px rgba(168,194,86,0.13);
}

#cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(33,70,98, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s;
}
#cookie-modal {
  background: #fff;
  border-radius: 19px;
  min-width: 300px;
  max-width: 95vw;
  box-shadow: 0 8px 48px rgba(33,70,98,0.14);
  padding: 36px 25px 24px 25px;
  display: flex;
  flex-direction: column;
}
#cookie-modal h3 { margin-bottom: 15px; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7px 0 14px 0;
  font-size: 1rem;
}
.cookie-category .toggle-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E7EDF3;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-category .toggle-switch:checked { background: #A8C256; }
.cookie-category .toggle-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.21s;
}
.cookie-category .toggle-switch:checked:before { left: 19px; background: #fff; }
#cookie-modal .modal-close-btn {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.3rem;
  color: #A8C256;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.13s;
}
#cookie-modal .modal-close-btn:hover { color: #214662; }

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 13px;
  font-size: 2.1rem;
  background: transparent;
  color: #214662;
  z-index: 1003;
  border-radius: 8px;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  transition: border 0.17s, background 0.16s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6E9C1;
  color: #A8C256;
  border: 1.5px solid #A8C256;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  bottom: 0;
  width: 92vw;
  max-width: 348px;
  background: #fff;
  box-shadow: -10px 0 40px rgba(33,70,98,0.10);
  z-index: 9001;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 0.35s cubic-bezier(.54,.23,.37,1);
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  margin: 18px 22px 8px 22px;
  font-size: 2.0rem;
  background: transparent;
  color: #A8C256;
  border-radius: 8px;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  transition: border 0.17s, background 0.16s, color 0.16s;
  align-self: flex-end;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F6E9C1;
  color: #214662;
  border: 1.5px solid #A8C256;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 30px 20px 36px;
  gap: 14px;
  margin-bottom: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #214662;
  border-radius: 7px;
  padding: 8px 0;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F6E9C1;
  color: #A8C256;
}

/* ANIMATIONS */
.mobile-menu, .mobile-menu.open { will-change: transform; }
.mobile-menu {
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1120px) {
  .container { max-width: 98vw; }
  .content-wrapper { gap: 22px; }
  .section { padding: 30px 8vw; }
}
@media (max-width: 900px) {
  .section { padding: 30px 2vw; }
  .hero { padding: 48px 2vw 36px 2vw; }
  .hero h1 { font-size: 2.07rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
  .section,
  .features, .services, .contact, .contact-info, .contact-form, .about, .legal, .cta {
    padding: 26px 6px;
    border-radius: 11px;
    margin-bottom: 38px;
  }
  .container { padding-left: 7px; padding-right: 7px; }
  .footer-nav { flex-direction: column; gap: 8px; }
  .branding { flex-direction: column; gap: 6px; text-align: center; }
  .content-wrapper { gap: 13px; }
  .icon-row { gap: 17px; }
  .service-grid { gap: 13px; }
  .testimonial-row { flex-direction: column; gap: 18px; }
  .testimonial-card { max-width: 100%; min-width: 0; }
  .card-container, .content-grid { gap: 13px; }
  .mini-form { flex-direction: column; gap: 13px; }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none !important;
  }
  header .button.primary { display: none; }
  .mobile-menu { display: flex; }
}

@media (max-width: 480px) {
  .container { padding-left: 3px; padding-right: 3px; }
  .section, .features, .services, .contact, .about, .cta, .legal {
    padding: 18px 0;
  }
  .hero { border-radius: 0 0 13px 13px; }
  .card, .service-grid > div {
    padding: 11px 7px;
    border-radius: 8px;
    font-size: 0.99rem;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* UTILITY */
.gap-20 { gap: 20px; }
.mt-16 { margin-top: 16px; }
.mb-24 { margin-bottom: 24px; }

/* HIDE MOBILE MENU BY DEFAULT */
.mobile-menu { display: none; }
@media (max-width: 768px) {
  .mobile-menu { display: flex; flex-direction: column; }
}

/* MODAL HIDE BY DEFAULT */
#cookie-modal-overlay { display: none; }
#cookie-modal-overlay.active { display: flex; }

/* VISUAL TRANSITIONS */
.button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, a {
  transition: background 0.16s, color 0.16s, border-color 0.14s, box-shadow 0.17s;
}

/* Miscellaneous tweaks */
hr { height: 1px; background: #E7EDF3; border: 0; margin: 26px 0 12px 0; }
::-webkit-scrollbar { width: 9px; background: #f6f6f6; }
::-webkit-scrollbar-thumb { background: #E7EDF3; border-radius: 6px; }

/* Ensure spacing between all cards/sections */
section + section { margin-top: 38px; }
.features + .services, .services + .testimonials, .testimonials + .contact { margin-top: 32px; }
.card + .card, .testimonial-card + .testimonial-card { margin-left: 0; margin-top: 20px; }

/* Ensure all interactive elements are touch-appropriate */
.button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  min-height: 44px;
}
