/* === CSS RESET & BASE === */
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, 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, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #FAFCFE;
  color: #22324A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  color: #3370B1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F8B133;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li + li {
  margin-top: 0.5em;
}
section, main {
  width: 100%;
  background: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #22324A;
  margin-bottom: 20px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 16px; }
h4 { font-size: 1.2rem; margin-bottom: 12px; }
.lead { font-size: 1.25rem; color: #3370B1; margin-bottom: 24px; font-weight: 500; font-family: 'Montserrat', 'Roboto', Arial, sans-serif; }
strong { font-weight: 600; }
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(51,112,177,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* Section mandatory pattern */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
@media (max-width: 600px) {
  section { padding: 28px 0 0 0; }
  .content-wrapper { padding: 22px 8px; }
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  padding: 0;
  background: #E9F5FF;
  border-bottom: 1px solid #d3e5f4;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  box-shadow: 0 4px 16px rgba(51,112,177,0.04);
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  min-height: 68px;
  position: relative;
}
.logo img, .logo-footer img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
  margin-left: 32px;
}
.main-nav a {
  padding: 4px 10px 4px 6px;
  border-radius: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #3370B1;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: none;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E9F5FF;
  color: #F8B133;
}
.btn-primary {
  margin-left: auto;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #3370B1;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 11px 26px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(51,112,177,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  min-width: 156px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #285184;
  color: #fff;
  box-shadow: 0 2px 18px rgba(51,112,177,0.16);
}
.btn-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #F8B133;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  font-size: 1.07rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(248,177,51,0.08);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  outline: none;
  text-align: center;
  text-decoration: none;
  margin-top: 14px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #CF8E1A;
  color: #fff;
}
/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #3370B1;
  cursor: pointer;
  margin-left: 14px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  height: 46px;
  width: 46px;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #d7e8fa;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 10px;
    margin-left: 10px;
  }
  header .container { gap:10px; }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 110;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.53,.03,.29,.95);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: -4px 0 38px rgba(51,112,177,0.08);
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.4rem;
  color: #3370B1;
  cursor: pointer;
  margin: 18px 0 10px 18px;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 36px 0 0 28px;
  width: 80vw;
  max-width: 390px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: #3370B1;
  padding: 10px 12px;
  border-radius: 12px;
  background: none;
  transition: background 0.16s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #E9F5FF;
  color: #F8B133;
}

/* Overlay for modal/menus if needed */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,50,74,0.12);
  z-index: 105;
  pointer-events: all;
  display: none;
}
.mobile-menu.active + .mobile-menu-overlay {
  display: block;
}

/* === HERO, CARDS, LAYOUT PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(51,112,177,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(51,112,177,0.14);
}
.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) {
  .content-grid,.text-image-section {flex-direction: column;}
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #E9F5FF;
  border-radius: 16px;
  min-width: 270px;
  max-width: 410px;
  box-shadow: 0 4px 12px rgba(51,112,177,0.07);
  color: #22324A;
  font-size: 1.06rem;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px rgba(51,112,177,0.13);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.01em;
}
.testimonial-meta {
  font-size: 0.96rem;
  color: #3370B1;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-top: 8px;
}
.testimonial-meta span:first-child {
  color: #F8B133;
  font-size: 1.1em;
  letter-spacing: 0.12em;
}

/* --- Feature/Grid/Item Classes & Secondary Lists --- */
.feature-grid, .feature-list, .route-examples, .workshop-topics, .benefits-list, .principles-list,.team-intro, .service-list, .bullet-points, .feature-steps, .service-steps, .webinar-topics {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-grid li, .feature-list li, .service-list li, .workshop-topics li, .benefits-list li, .team-intro li, .principles-list li, .route-examples li, .webinar-topics li {
  font-size: 1.13rem;
  letter-spacing: 0.01em;
}
.feature-icons-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 14px 0 18px 0;
}
.feature-icons-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.08rem;
  font-weight: 500;
  color: #3370B1;
}
.bullet-points li {
  color: #7C93AA;
}
.text-section {
  background: #F7FAFC;
  border: 1px solid #E9F5FF;
  box-shadow: 0 2px 12px rgba(233,245,255,0.06);
}
.target-groups, .interactive-elements, .trust-signals {
  margin: 18px 0 20px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
}
.target-groups ul, .interactive-elements ul, .trust-signals ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: disc inside;
  margin-left: 16px;
}
.

/* --- Pricing Section/Text --- */
.pricing {
  font-size: 1.12rem;
  font-weight: 700;
  color: #3370B1;
  margin: 10px 0;
}

/* --- Contact/Address Details --- */
.contact-details ul, .footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.footer-contact {
  margin-top: 26px;
  color: #6b7d95;
  font-size: 0.95rem;
  gap: 8px;
}
.footer-contact img { height: 17px; width: auto; margin-right: 7px; }
.logo-footer img {
  height: 48px;
}

/* --- Footer --- */
footer {
  background: #fff;
  border-top: 1px solid #e9f3fa;
  margin-top: 42px;
  padding: 35px 0 28px 0;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #3370B1;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 7px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E9F5FF;
  color: #F8B133;
}
@media (max-width: 750px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}

/* --- Misc Utility & Spacing --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-icons-row, .testimonial-slider {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === RESPONSIVE RULES === */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 1000px) {
  .content-wrapper {padding: 26px 8px;}
  .section {padding: 28px 6px;}
}
@media (max-width: 800px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .logo img, .logo-footer img { height: 34px; }
  .content-wrapper {border-radius: 13px;}
}
@media (max-width: 600px) {
  html {font-size: 15px;}
  h1 {font-size: 1.35rem;}
  .testimonial-slider { flex-direction: column; gap: 18px; }
  .feature-icons-row { flex-direction: column; gap: 13px; align-items: flex-start; }
}

/* === ANIMATION & MICRO-INTERACTIONS === */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-nav a, .card, .testimonial-card {
  transition: background 0.19s, color 0.19s, box-shadow 0.22s, border-color 0.18s, transform 0.18s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 30px rgba(51,112,177,0.14);
}

/* === COOKIE BANNER STYLES === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(51,112,177,0.13);
  width: 100vw;
  padding: 18px 10px 22px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1.5px solid #E9F5FF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.37s;
}
.cookie-banner .cookie-title {
  color: #22324A;
  font-weight: 700;
  font-size: 1.06rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  padding: 9px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
}
.cookie-banner .accept {
  background: #3370B1;
  color: #fff;
}
.cookie-banner .accept:hover {background:#285184;}
.cookie-banner .reject {
  background: #e3e7eb;
  color: #22324A;
}
.cookie-banner .reject:hover {background:#cfdbe4;}
.cookie-banner .settings {
  background: #F8B133;
  color: #fff;
}
.cookie-banner .settings:hover { background: #CF8E1A; }

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0;
  width: 100vw;
  height: 100vh;
  z-index: 155;
  background: rgba(34,50,74,0.18);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {display: flex;}
.cookie-modal {
  background: #fff;
  padding: 30px 24px 21px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 34px rgba(51,112,177,0.16);
  min-width: 310px;
  max-width: 96vw;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: cookie-pop 0.37s cubic-bezier(.5,1.7,.84,0.67);
}
@keyframes cookie-pop {
  0% { transform: scale(0.95); opacity:0; }
  90%{opacity:1;}
  100% { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  color: #22324A;
  margin-bottom: 7px;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 13px;
}
.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  padding: 7px 0 7px 0;
}
.cookie-setting-row label {
  font-size: 1rem;
  color: #22324A;
}
.cookie-setting-row input[type="checkbox"] {
  accent-color: #3370B1;
  width: 19px; height: 19px;
}
.cookie-modal .btns {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.cookie-modal .close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #e3e7eb;
  color: #3370B1;
  border-radius: 50%;
  font-size: 20px;
  padding: 6px 9px;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background 0.12s;
}
.cookie-modal .close:hover { background: #d8e5f2; }
.cookie-modal .accept {
  background: #3370B1; color: #fff;
}
.cookie-modal .accept:hover {background:#285184;}
.cookie-modal .reject {
  background: #e3e7eb; color:#22324A;
}
.cookie-modal .reject:hover {background:#cfdbe4;}

/* --- VISUAL ELEMENTS (ICONS, ETC) --- */
img[alt^="Sicherheit"], img[alt^="Abenteuerlust"], img[alt^="Familiennähe"], img[alt^="Praxistipps"],
img[alt^="Individualität"], img[alt^="Herz"], img[alt^="Checkliste"], img[alt^="Familienvertrauen"], img[alt^="Geprüft"], img[alt^="Bewertungen"], img[alt^="Adresse"], img[alt^="Telefon"], img[alt^="E-Mail"], img[alt^="Öffnungszeiten"], img[alt^="Map"], img[alt^="Phone"], img[alt^="Mail"] {
  height: 23px;
  width: auto;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 3px;
  filter: drop-shadow(0 1px 1px rgba(51,112,177,0.02));
}
@media (max-width: 500px) {
  .feature-icons-row span,
  .contact-details li, .footer-contact {
    font-size:0.98rem;
  }
}

/* SCROLLBAR (browser support) */
::-webkit-scrollbar {
  width: 12px;
  background: #E9F5FF;
}
::-webkit-scrollbar-thumb {
  background: #C9E1F8;
  border-radius: 10px;
}

/* === FORM ELEMENTS (for future extensibility) === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: 1px solid #bdd4e3;
  padding: 9px 14px;
  margin-bottom: 18px;
  outline: none;
  background: #f5fafd;
  transition: border 0.15s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #3370B1;
  box-shadow: 0 1.5px 8px rgba(51,112,177,0.07);
}

button:disabled, .btn-primary:disabled, .btn-secondary:disabled {
  background: #bdc9d6;
  color: #cacdce;
  cursor: not-allowed;
}

/* --- Visually hidden (for accessibility) --- */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

/* --- Accessibility Focus Styles --- */
a:focus, button:focus, input:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #F8B133;
  outline-offset: 3px;
  box-shadow: 0 0 0 2px #F8B13322;
  z-index: 10;
}

/* === END OF FILE === */
