/* ------------------------------
   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,
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #FAFCFE;
  color: white;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A300;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* ------------------------------
   SOFT PASTEL COLOR SCHEME
------------------------------ */
:root {
  --primary: #20436E;
  --secondary: #F7FAFD;
  --accent: #F4A300;
  --pastel-blue: #E7F2FB;
  --pastel-lilac: #F6EDFF;
  --pastel-mint: #E6F7F1;
  --pastel-yellow: #FFF8EC;
  --pastel-pink: #FFECEF;
  --text-heading: #263353;
  --text-body: #294057;
  --white: #fff;
  --shadow: 0 4px 24px rgba(50, 60, 90, 0.10);
  --shadow-card: 0 2px 18px rgba(60, 70, 90, 0.07);
  --radius: 18px;
  --radius-sm: 10px;
  --border: 1px solid #E2E8F0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --secondary: #202944;
    --text-heading: #E2E8F0;
    --text-body: #d3e2f5;
    --primary: #92b1e6;
    --pastel-blue: #2C3B53;
    --pastel-lilac: #362648;
    --pastel-mint: #254143;
    --pastel-yellow: #50421F;
    --pastel-pink: #54303e;
    --white: #19203c;
  }
  body {
    background: #202944;
  }
}

/* ------------------------------
   TYPOGRAPHY
------------------------------ */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--text-heading);
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text-heading);
  letter-spacing: -0.5px;
  line-height: 1.18;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.24;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  color: var(--accent);
  font-weight: 700;
}
small {
  font-size: 0.92rem;
  color: #8594b0;
}

/* Headings spacing within section */
h1 + p, h2 + p, h3 + p {
  margin-top: 2px;
}
.section h2 {
  margin-bottom: 18px;
}
.section h3 {
  margin-bottom: 8px;
}
/* ------------------------------
   CONTAINERS & SECTIONS
------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
 
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ------------------------------
   NAVIGATION
------------------------------ */
header {
  background: var(--pastel-lilac);
  box-shadow: var(--shadow-card);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 18px 0 18px 0;
  font-size: 1.08rem;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
  position: relative;
}
.main-nav a:not(.cta):hover {
  background: var(--pastel-mint);
  color: var(--accent);
}
.main-nav a.cta.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(244,163,0,0.06);
  font-weight: 700;
  border-radius: 22px;
  margin-left: 8px;
  padding: 8px 22px;
  font-size: 1.04rem;
  letter-spacing: 0.1px;
  transition: background 0.18s, color 0.16s, transform 0.15s;
}
.main-nav a.cta.primary:hover {
  background: #ffb84a;
  color: var(--primary);
  transform: translateY(-1px) scale(1.035);
}
.main-nav img {
  height: 38px;
  width: auto;
  margin-right: 8px;
}

/* ------------------------------
   MOBILE NAVIGATION
------------------------------ */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 38px;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  transition: background 0.17s, box-shadow 0.19s;
}
.mobile-menu-toggle:hover {
  background: #ffd567;
  color: var(--primary);
  box-shadow: 0 4px 16px 0 rgba(244,163,0,0.15);
}
.mobile-menu {
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background: rgba(245,245,255, 0.98);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  box-shadow: 0 4px 40px rgba(50,60,90, .18);
  transition: transform 0.34s cubic-bezier(0.6,0,0.2,1);
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 2.3rem;
  margin: 18px 18px 10px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 15px 0 0 26px;
}
.mobile-nav a {
  color: var(--primary);
  background: transparent;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover {
  background: var(--pastel-pink);
  color: var(--accent);
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 7px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ------------------------------
   LAYOUT UTILS & FLEXBOX SYSTEM
------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 20px 24px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(44,78,136,0.10);
  transform: translateY(-2px) scale(1.016);
}
.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-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  min-width: 190px;
  max-width: 420px;
  margin-bottom: 20px;
  flex-direction: column;
  color: wheat;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* ------------------------------
   HERO, FEATURES, SERVICES
------------------------------ */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: var(--radius);
}
.hero, .hero-section {
  background: var(--pastel-lilac);
  padding: 56px 0 54px 0 !important;
  border-radius: 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  color: var(--primary);
  filter: drop-shadow(0 2px 1px rgba(180,180,220,0.12));
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  padding: 0;
  margin-top: 16px;
}
.feature-grid li {
  background: var(--pastel-mint);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 26px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 245px;
  min-width: 180px;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.feature-grid li img {
  height: 48px;
  width: 48px;
  margin-bottom: 9px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 20px rgba(44,78,136,0.11);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.service-cards > div {
  background: var(--pastel-yellow);
  border-radius: var(--radius-sm);
  padding: 22px 20px 20px 20px;
  min-width: 180px;
  flex: 1 1 210px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.18s;
  margin-bottom: 20px;
}
.service-cards > div:hover {
  box-shadow: 0 8px 28px rgba(244,163,0,.11);
}

.service-detail {
  background: var(--pastel-pink);
  border-radius: var(--radius-sm);
  padding: 20px 18px 16px 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-grid, .tips-grid, .methoden-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.course-grid > div,
.tips-grid > div, 
.methoden-grid > div {
  background: var(--pastel-lilac);
  border-radius: var(--radius-sm);
  padding: 18px 16px 16px 16px;
  box-shadow: var(--shadow-card);
  min-width: 180px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.course-grid > div:hover, .tips-grid > div:hover, .methoden-grid > div:hover {
  box-shadow: 0 6px 26px rgba(102,110,185,0.09);
}

.schedule-overview {
  margin-top: 18px;
  background: var(--pastel-blue);
  border-radius: var(--radius-sm);
  padding: 14px 16px 10px 16px;
  font-size: 1rem;
}
.facts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.facts li {
  background: var(--pastel-blue);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0;
}

/* ------------------------------
   CTA BUTTONS & INTERACTIVE
------------------------------ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff !important;
  font-size: 1.14rem;
  letter-spacing: 0.08em;
  border: none;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(230,150,36,0.08);
  transition: background 0.17s, color 0.18s, transform 0.13s;
  outline: none;
  text-decoration: none;
}
.cta:hover, .cta:focus {
  background: #ffcc63;
  color: var(--primary) !important;
  transform: scale(1.04) translateY(-1px);
}

/* ------------------------------
   TESTIMONIALS
------------------------------ */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 20px;
}
.testimonial-card {
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-sm);
  padding: 20px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 190px;
  max-width: 400px;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid #d6f5e7;
  color: wheat;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.03rem;
}
.testimonial-card span {
  font-size: 1.09rem;
  letter-spacing: 1px;
  color: var(--accent);
}

/* ------------------------------
   FOOTER
------------------------------ */
footer {
  background: var(--pastel-blue);
  padding: 40px 0 20px 0;
  border-top: 1px solid #e7eaf1;
  margin-top: 40px;
  box-shadow: 0 -6px 32px rgba(55,82,153,0.03);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 42px;
  width: auto;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}
.footer-menu a {
  color: var(--primary);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  transition: background 0.13s, color 0.13s;
}
.footer-menu a:hover {
  background: var(--pastel-mint);
  color: var(--accent);
}
.footer-contact {
  margin-bottom: 16px;
  font-size: 0.97rem;
  color: #465482;
}
.footer-contact a {
  color: var(--primary);
  text-decoration: underline;
}
.footer-note {
  padding-top: 10px;
  color: #8594b0;
  font-size: 0.93rem;
  text-align: left;
}

/* ------------------------------
   MISC ELEMENTS
------------------------------ */
li {
  margin-bottom: 8px;
}
ul li:last-child {
  margin-bottom: 0;
}
.map-placeholder {
  background: var(--pastel-blue);
  color: #6c7ca7;
  padding: 20px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-style: italic;
}
.secondary-contact-options {
  margin-top: 16px;
  background: var(--pastel-mint);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 1.02rem;
}
.schedule-overview ul, .facts ul {
  margin: 0;
  padding: 0;
}
.faq {
  margin-top: 18px;
  background: var(--pastel-mint);
  padding: 13px 17px 13px 17px;
  border-radius: var(--radius-sm);
}
.faq strong {
  color: var(--primary);
}

/* ------------------------------
  
/* ------------------------------
   COOKIE CONSENT BANNER + MODAL
------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--pastel-yellow);
  color: #294057;
  box-shadow: 0 -4px 24px rgba(85,85,120,.11);
  border-top: 1px solid #ffeec5;
  z-index: 1500;
  padding: 18px 0 18px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 1rem;
  animation: cookieFadeIn 0.42s cubic-bezier(0.8,0,0.3,1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(56px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #263353;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  border: none;
  padding: 10px 24px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, transform 0.13s;
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-btn.primary {
  background: var(--accent);
  color: #fff;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #ffb84a;
  color: var(--primary);
}
.cookie-btn.alt {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-btn.alt:hover, .cookie-btn.alt:focus {
  background: #ffe0ea;
  color: #a6333f;
}
.cookie-btn.settings {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ddeffc;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    margin: 0;
    gap: 10px;
    padding: 13px 0 13px 0;
  }
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1600;
  background: rgba(33,45,86,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFadeIn 0.36s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  color: #263353;
  padding: 32px 22px 22px 22px;
  border-radius: var(--radius);
  max-width: 440px;
  min-width: 220px;
  box-shadow: 0 4px 40px rgba(43,60,80,0.16);
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 1rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 20px; height: 20px;
}
.cookie-category .always {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  background: none;
  color: var(--primary);
  font-size: 1.22rem;
  position: absolute;
  right: 22px; top: 17px;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--accent);
}

 