/*
  Voyage Seeker Akademie - Monochrome Sophisticated CSS Theme
  Brand: Modern, inspiring, trustworthy | Monochrome + Brand Accent
  Layout: FLEX ONLY - NO CSS GRID
  Fonts: Oswald (display), Roboto (body)
  Colors:
    Mono: #111, #222, #333 (primary darks), #F5F6F8 (background), #fff
    Brand Accent: #21446B, #96C83F
    Shadows: rgba(0,0,0,0.07), rgba(33,68,107,0.13)
*/

/*********** CSS RESET & BASE STYLES ***********/
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; scroll-behavior: smooth; background: #F5F6F8; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: #F5F6F8;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.02em;
  min-height: 100vh;
}
img, picture, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a { color: #21446B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus {
  color: #96C83F;
  outline: none;
}
ul, ol { list-style: none; margin: 0; padding: 0; }
strong { font-weight: bold; }
em { font-style: italic; }

/*********** TYPOGRAPHY ***********/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  line-height: 1.18;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
@media (min-width: 600px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.35rem; }
}
p, li, label, input, textarea, select { font-size: 1rem; }

/*********** CONTAINER & WRAPPERS ***********/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}
.text-section {
  align-items: flex-start;
  gap: 16px;
}

/*********** SPACING & SECTIONS ***********/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section { /* For non-section tags using the pattern */
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-banner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(33,68,107,0.13);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner .content-wrapper { align-items: center; }

/*********** HEADER, NAVIGATION, BRAND ***********/
header {
  background: #fff;
  border-bottom: 1px solid #e8eaed;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 28px;
}
.brand-logo {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.main-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-navigation a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #222;
  padding: 6px 10px;
  transition: color 0.2s;
  border-radius: 6px;
  position: relative;
}
.main-navigation a.cta.primary {
  background: #111;
  color: #fff;
  border-radius: 26px;
  padding: 9px 22px;
  margin-left: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.09);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.main-navigation a.cta.primary:hover {
  background: #21446B;
  color: #fff;
  box-shadow: 0 5px 20px rgba(33,68,107,0.19);
}
.main-navigation a:hover {
  color: #21446B;
  background: #f5f6f8;
}
.main-navigation a.active {
  color: #111;
  font-weight: 700;
}

/*********** MOBILE NAVIGATION ***********/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #111;
  cursor: pointer;
  z-index: 1101;
  padding: 8px 16px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eee;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0);
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 8px 0px 40px rgba(33,68,107,0.10);
  z-index: 1102;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 30px 0 0;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #111;
  cursor: pointer;
  padding: 8px 18px;
  transition: color 0.15s, background 0.15s;
  border-radius: 50%;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #eee;
  color: #21446B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: center;
  margin-top: 26px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.23rem;
  color: #222;
  background: none;
  width: 100%;
  padding: 19px 0 19px 36px;
  text-align: left;
  border-bottom: 1px solid #ececec;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F6F8;
  color: #21446B;
}
@media (max-width: 1024px) {
  .main-navigation {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/*********** HERO, FEATURE, CTA ***********/
.hero {
  background: linear-gradient(80deg, #fff 60%, #f1f1f2 100%);
  box-shadow: 0 8px 40px rgba(33,68,107,0.03);
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 46px 0 38px 0;
  display: flex;
  align-items: center;
  min-height: 270px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #111;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.hero p {
  color: #333;
  font-size: 1.12rem;
  margin-bottom: 10px;
}

/*********** FEATURE GRID (index & others) ***********/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 8px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 23px rgba(33,44,65,0.11);
  padding: 34px 26px 24px 26px;
  text-align: left;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(33,44,65,0.16);
  transform: translateY(-4px) scale(1.019);
}
.feature-grid img {
  width: 48px; height: 48px; margin-bottom: 12px;
}
.feature-grid h3 {
  font-size: 1.19rem;
  color: #21446B;
  margin-bottom: 0;
}
.feature-grid p {
  font-size: 1rem;
  color: #333;
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 20px; align-items: stretch; }
  .feature-grid > div { max-width: 100%; }
}

/*********** CARDS ***********/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(33,68,107,0.06);
  margin-bottom: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 26px rgba(33,44,65,0.15);
  transform: translateY(-4px) scale(1.012);
}

/*********** TESTIMONIALS ***********/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonials .testimonial-slider {
  gap:24px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(33,68,107,0.08);
  gap: 20px;
  padding: 28px 32px 22px 32px;
  min-width: 250px;
  max-width: 370px;
  margin-bottom: 24px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 11px 30px rgba(33,44,65,0.15);
  transform: translateY(-5px) scale(1.018);
}
.testimonial-card .star-rating {
  color: #21446B;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card p {
  color: #222;
  font-size: 1.09rem;
  margin-bottom: 10px;
}
.testimonial-card strong { color: #111; }

/*********** BUTTONS & CTAs ***********/
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 11px 32px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, border-color 0.18s;
  box-shadow: 0 3px 13px rgba(33,68,107,0.08);
  outline: none;
  margin-top: 14px;
  text-align: center;
  min-width: 180px;
}
.cta.primary {
  background: #111;
  color: #fff;
  border: 1.5px solid #111;
}
.cta.primary:hover, .cta.primary:focus {
  background: #21446B;
  border-color: #21446B;
  color: #fff;
  box-shadow: 0 8px 28px rgba(33,44,65,0.16);
}
.cta.secondary {
  background: transparent;
  color: #21446B;
  border: 1.3px solid #21446B;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #21446B;
  color: #fff;
  box-shadow: 0 6px 28px rgba(33,44,65,0.11);
}

@media (max-width: 600px) {
  .cta,
  .main-navigation a.cta.primary {
    min-width: 100%;
    font-size: 1.02rem;
    padding: 13px 12px;
  }
}

/*********** TABLES (Online Kursvergleich) ***********/
table {
  width: 100%;
  border-collapse: separate;
  border-radius: 15px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(33,44,65,0.07);
  overflow: hidden;
}
thead th {
  background: #f1f1f1;
  color: #222;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  padding: 17px 11px;
}
tbody td {
  padding: 16px 11px;
  border-top: 1px solid #eaeaef;
  color: #333;
  font-size: 1rem;
  vertical-align: middle;
}
.rating-badge {
  display: inline-block;
  background: #f3f3f3;
  color: #21446B;
  font-weight: 600;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 0.97rem;
}
.highlight-badge {
  background: #96C83F;
  color: #111;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.98rem;
  margin-left: 6px;
}

/*********** ACCORDION/FAQ ***********/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 9px rgba(33,44,65,0.08);
  padding: 18px 24px 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  border-left: 4px solid #21446B;
  transition: box-shadow 0.18s, border-left-color 0.18s;
}
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(33,44,65,0.13);
  border-left-color: #96C83F;
}
.faq-item h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0;
  color: #222;
}
.faq-item div:not(:empty) {
  color: #444;
  font-size: 1rem;
  margin-left: 2px;
}

/*********** FOOTER ***********/
footer {
  background: #fff;
  border-top: 1px solid #eceef0;
  margin-top: 80px;
  padding: 32px 0;
  font-size: 1rem;
}
footer .container { padding: 0 20px; }
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  color: #333;
  font-size: 1rem;
}
.contact-info img {
  width: 46px; height: auto; margin-bottom: 4px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  color: #111;
  font-family: 'Oswald',Arial,sans-serif;
}
.footer-menu a {
  color: #222;
  font-family: inherit;
  font-size: 0.98rem;
  transition: color 0.15s;
}
.footer-menu a:hover {
  color: #21446B;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-links img {
  width: 36px;
  height: 36px;
  filter: grayscale(1) contrast(1.08);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.15s;
}
.social-links a:hover img {
  opacity: 1;
  filter: none;
}

/*********** MAP EMBED ***********/
.map-embed {
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  font-size: 1.07rem;
  color: #333;
}

/*********** TEAM SECTION ***********/
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 6px;
}
.team-member {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(33,44,65,0.07);
  padding: 22px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
}
.team-member:hover {
  box-shadow: 0 7px 25px rgba(33,44,65,0.13);
  transform: translateY(-4px) scale(1.012);
}
@media (max-width: 900px) {
  .team-list { flex-direction: column; gap: 20px; }
  .team-member { width: 100%; }
}

/*********** LISTS ***********/
ul, ol {
  padding-left: 24px;
  margin-bottom: 7px;
}
ul > li, ol > li {
  margin-bottom: 10px;
  color: #222;
  font-size: 1rem;
}
ul > li:before {
  content: '\2022';
  color: #21446B;
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
  font-size: 1.05em;
}

/*********** WIZARD SUMMARY ***********/
.wizard-summary {
  background: #f5f6f8;
  border-radius: 15px;
  padding: 18px 18px 16px 24px;
  margin-top: 13px;
  box-shadow: 0 1px 8px rgba(33,68,107,0.04);
  color: #333;
}
.personalized-result {
  font-family: 'Oswald', Arial, sans-serif;
  color: #21446B;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.05rem;
}

/*********** FORM ELEMENTS ***********/
input, textarea, select {
  background: #f5f6f8;
  border: 1.1px solid #d2d6dd;
  border-radius: 8px;
  padding: 10px;
  font-size: 1rem;
  color: #222;
  font-family: inherit;
  margin-bottom: 14px;
  transition: border-color 0.17s;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: #21446B;
  outline: none;
}
label {
  font-weight: 500;
  color: #222;
  margin-bottom: 2px;
}

/*********** RESPONSIVE ***********/
@media (max-width: 900px) {
  .hero {
    padding: 30px 0 18px 0;
    min-height: unset;
  }
  section, .section, .cta-banner {
    padding: 29px 0.5em;
  }
  .container {
    padding: 0 10px;
  }
  .footer-menu, .content-wrapper, .main-navigation {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .team-list, .feature-grid, .card-container, .testimonial-slider {
    flex-direction: column !important;
    gap: 17px !important;
  }
  .card, .testimonial-card, .team-member, .feature-grid > div { max-width: 100% !important; }
  .content-wrapper { gap: 14px; }
  .cta-banner, .cta-banner .content-wrapper { align-items: center; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.17rem; }
  .cta-banner, .cta-banner .content-wrapper { padding: 20px 0 16px 0; }
  section, .section { padding: 22px 2px; }
}

/*********** ANIMATIONS ***********/
button, .cta, a.cta.primary, .faq-item, .card, .testimonial-card {
  transition: box-shadow 0.19s, background 0.18s, color 0.17s, border-color 0.17s, transform 0.18s;
}
.mobile-menu, .mobile-menu-toggle, .mobile-menu-close, .mobile-nav a {
  transition: all 0.23s cubic-bezier(.5,.12,.18,1);
}

/*********** COOKIE CONSENT BANNER ***********/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #222;
  color: #fff;
  padding: 24px 16px;
  z-index: 2010;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 32px rgba(33,44,65,0.16);
  font-size: 1rem;
  animation: fadeInUp 0.38s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(44px);} to { opacity: 1; transform: none; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.cookie-consent-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 24px;
  padding: 8px 25px;
  margin: 0 2px;
  border: none;
  cursor: pointer;
}
.cookie-consent-banner button.accept {
  background: #96C83F;
  color: #111;
}
.cookie-consent-banner button.accept:hover { background: #b9f872; }
.cookie-consent-banner button.reject {
  background: #fff;
  color: #21446B;
  border: 1.1px solid #222;
}
.cookie-consent-banner button.reject:hover { background: #f1f1f4; }
.cookie-consent-banner button.settings {
  background: #111;
  color: #fff;
  border: 1.1px solid #111;
}
.cookie-consent-banner button.settings:hover { background: #222; }

/*********** COOKIE CONSENT MODAL ***********/
.cookie-modal-overlay {
  position: fixed; top:0;left:0;right:0;bottom:0;
  background: rgba(20,23,24,0.60);
  z-index: 2020;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s linear;
}
@keyframes fadeIn { from{ opacity:0; } to { opacity:1; } }
.cookie-modal {
  background: #fff;
  color: #222;
  padding: 40px 28px 28px 28px;
  border-radius: 19px;
  min-width: 320px; max-width: 390px;
  box-shadow: 0 8px 36px rgba(33,44,65,0.13);
  text-align: left;
  animation: scaleIn 0.27s cubic-bezier(.6,-0.28,.74,.05);
}
@keyframes scaleIn { from { opacity:0; transform:scale(.85);} to { opacity:1; transform:scale(1);} }
.cookie-modal h2 {
  margin-bottom: 19px;
  font-size: 1.32rem;
  font-family: 'Oswald', Arial, sans-serif;
  color: #111;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 27px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label { cursor: pointer; }
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #21446B;
  cursor: pointer;
}
.cookie-category .always-on {
  font-weight: 600;
  color: #21446B;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 23px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal button.save {
  background: #96C83F;
  color: #111;
}
.cookie-modal button.save:hover { background: #b9f872; }
.cookie-modal button.cancel {
  background: #222;
  color: #fff;
}
.cookie-modal button.cancel:hover { background: #333; }

/*********** UTILS & HELPER CLASSES ***********/
.hide { display: none !important; }
.text-center { text-align: center !important; }
.align-center { align-items: center !important; }
.d-flex { display: flex !important; }
.d-column { flex-direction: column !important; }

/*********** FORCED FLEXBOX PATTERNS ***********/
.card-container,
.card-grid,
.content-grid,
.team-list,
.feature-grid,
.section-list,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.content-grid {
  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; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*********** END OF VOYAGE SEEKER AKADEMIE CSS ***********/
