/* ============================================
   THEME.CSS – Einheitlicher Look für alle Seiten
   Basiert auf dem Expert-Moves-Styling
   ============================================ */

:root {
  --navy: #0b1f33;
  --navy-light: #132f49;
  --blue: #1d5d8f;
  --accent: #7fb7d9;
  --cream: #f5f3ee;
  --white: #ffffff;
  --text: #17212b;
  --muted: #5d6872;
  --border: #d9dee3;
}

/* Grundlegende Typografie und Farben */
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  padding: 0;
}

a {
  color: inherit;
}

/* Container */
.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* Abschnitts-Label */
.section-label {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

/* Überschriften */
h1, h2, h3 {
  color: var(--navy);
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.65rem;
  margin-bottom: 14px;
}

/* Buttons */
.cta-button,
.toggle-btn,
.toggle-sub-btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  padding: 15px 28px;
  font-weight: 700;
  transition: background 0.2s ease;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.toggle-btn:hover,
.toggle-sub-btn:hover {
  background: var(--blue);
}

/* Links */
.details-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
}

.details-link:hover {
  text-decoration: underline;
}

/* Navigation */
nav {
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 0;
}

nav h1 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

nav a:hover,
nav a.active {
  opacity: 1;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
}

/* Footer */
footer,
.site-footer {
  background: #071725;
  color: #aebdca;
  padding: 30px 0;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 4rem;
}

/* Hero (für Seiten, die keinen eigenen Hero haben) */
.hero {
  background: #0b1f33 !important;
  background-color: #0b1f33 !important;
  color: #ffffff !important;
  padding: 90px 0 80px !important;
}

.hero h1 {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
  max-width: 900px !important;
}

.hero p,
.hero .hero-text {
  color: #e5edf3 !important;
  font-size: 1.25rem !important;
  max-width: 720px !important;
  margin-bottom: 20px !important;
}

.hero h1 span {
  color: var(--accent);
}

.hero-intro {
  font-size: 1.25rem;
  color: #e5edf3;
  max-width: 720px;
  margin-bottom: 35px;
}

/* Section-Standard */
section {
  padding: 75px 0;
}

section:nth-child(even) {
  background: var(--white);
}

section:nth-child(odd) {
  background: var(--cream);
}

/* Karten / Module */
.workshop,
.angebot-modul {
  background: var(--white);
  padding: 38px 42px;
  border-left: 5px solid var(--blue);
  box-shadow: 0 8px 25px rgba(11, 31, 51, 0.06);
  margin-bottom: 25px;
}

/* Navigation – explizit für dunklen Hintergrund */
header nav {
  background: var(--navy);
  color: var(--white);
  padding: 1.2rem 0;
}

header nav h1 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav a {
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}

header nav a:hover,
header nav a.active {
  opacity: 1;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.2rem;
}

/* Hero für die Startseite (#hero) */
#hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0 80px;
}

#hero h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

#hero p {
  color: #e5edf3;
  font-size: 1.25rem;
  max-width: 720px;
  margin-bottom: 35px;
}

/* Hero – explizit für alle Seiten */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0 80px;
}

.hero .container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.hero h1 {
  color: var(--white) !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 900px;
}

.hero p,
.hero .hero-text {
  color: #e5edf3 !important;
  font-size: 1.25rem;
  max-width: 720px;
  margin-bottom: 20px;
}

.hero p + p {
  font-size: 1.05rem;
  color: #c9d8e4 !important;
}

/* ============================================
   STARTSEITE – zusätzliche Komponenten
   ============================================ */

/* Hero – content */
.hero-content {
  width: min(1100px, 90%);
  margin: 0 auto;
  max-width: 900px;
}

.hero .eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--white) !important;
  margin-bottom: 28px;
  max-width: 850px;
}

.hero-intro {
  font-size: 1.25rem;
  color: #e5edf3 !important;
  max-width: 720px;
  margin-bottom: 35px;
}

/* Hero-Selector (Buttons) */
.hero-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-selector button {
  padding: 10px 20px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.hero-selector button:hover {
  background: rgba(127, 183, 217, 0.15);
}

.hero-selector button.active {
  background: var(--accent);
  color: var(--navy);
  border-color: var(--accent);
}

/* Hero-Modules */
.hero-module {
  display: none;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-module.active {
  display: block;
}

.hero-module h2 {
  color: var(--white) !important;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hero-module p {
  color: #e5edf3 !important;
  font-size: 1.1rem;
  max-width: 720px;
}

/* Hero-Actions */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.button-primary {
  background: var(--accent);
  color: var(--navy);
}

.button-primary:hover {
  background: var(--white);
}

.button-secondary {
  border: 1px solid var(--accent);
  color: var(--white);
  background: transparent;
}

.button-secondary:hover {
  background: rgba(127, 183, 217, 0.15);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: var(--accent);
}

/* Section-Standard */
.section {
  padding: 85px 0;
}

.section-intro {
  background: var(--white);
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2,
.section-dark .eyebrow {
  color: var(--white) !important;
}

.section-dark .eyebrow {
  color: var(--accent) !important;
}

.section-dark p {
  color: #e5edf3 !important;
}

.section-accent {
  background: var(--cream);
}

/* Content-Breiten */
.content-narrow {
  width: min(750px, 90%);
  margin: 0 auto;
}

.content-wide {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.content-centred {
  text-align: center;
}

/* Lead-Text */
.lead {
  font-size: 1.25rem;
  color: #3f4a54;
  margin-bottom: 25px;
}

/* Section-Headings */
.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 15px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 100%;
  align-items: start;
}

/* Principles-Grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.principle {
  background: var(--white);
  padding: 35px 30px;
  border-left: 4px solid var(--blue);
  box-shadow: 0 8px 25px rgba(11, 31, 51, 0.06);
}

.principle-number {
  display: block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.principle h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* Course-Preview-Grid */
.course-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.course-preview {
  background: var(--white);
  padding: 35px 30px;
  border-left: 4px solid var(--blue);
  box-shadow: 0 8px 25px rgba(11, 31, 51, 0.06);
}

.card-label {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.course-preview h3 {
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.text-link {
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

.text-link:hover {
  text-decoration: underline;
}

/* CTA-Note */
.cta-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 20px 0 25px;
}

/* Responsive */
@media (max-width: 900px) {
  .principles-grid,
  .course-preview-grid,
  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Section-Dark – Hintergrund und Schrift erzwingen */
body .section-dark,
section.section-dark {
  background: #0b1f33 !important;
  background-color: #0b1f33 !important;
  color: #ffffff !important;
  padding: 85px 0 !important;
}

body .section-dark h2,
section.section-dark h2 {
  color: #ffffff !important;
  font-size: 2.4rem !important;
  margin-bottom: 20px !important;
}

body .section-dark .eyebrow,
section.section-dark .eyebrow {
  color: #7fb7d9 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
}

body .section-dark p,
section.section-dark p {
  color: #e5edf3 !important;
  font-size: 1.1rem !important;
  max-width: 750px !important;
  margin: 0 auto 20px !important;
}

body .section-dark .content-centred,
section.section-dark .content-centred {
  text-align: center !important;
}

body .section-dark .button-light,
section.section-dark .button-light {
  background: #ffffff !important;
  color: #0b1f33 !important;
  margin-top: 20px !important;
}

body .section-dark .button-light:hover,
section.section-dark .button-light:hover {
  background: #7fb7d9 !important;
  color: #0b1f33 !important;
}

/* ============================================
   HEADER & NAVIGATION – dunkelblau, weiße Schrift
   ============================================ */

.site-header,
header.site-header {
  background: #0b1f33 !important;
  border-bottom: 1px solid #132f49 !important;
  padding: 0 !important;
}

.header-inner {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-header .logo,
.site-header .logo a,
.logo a {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
}

/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}

.main-nav a,
.main-nav .nav-link {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav .nav-link:hover {
  opacity: 1;
  border-bottom-color: #7fb7d9;
}

.main-nav a.active,
.main-nav .nav-link.active {
  opacity: 1;
  border-bottom-color: #7fb7d9;
  font-weight: 600;
  background: none !important;
}

/* Sprachumschalter */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 500;
}

.lang-switch .lang-link {
  color: #ffffff !important;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.lang-switch .lang-link:hover {
  opacity: 1;
}

.lang-switch .lang-link.active {
  opacity: 1;
  font-weight: 700;
  border-bottom: 2px solid #7fb7d9;
}

.lang-switch .lang-divider,
.lang-switch .lang-separator {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ============================================
   ANGEBOTE-SEITE – zusätzliche Komponenten
   ============================================ */

/* Page-Intro */
.page-intro {
  background: #0b1f33 !important;
  color: #ffffff !important;
  padding: 80px 0 70px !important;
}

.page-intro .eyebrow {
  color: #7fb7d9 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.page-intro h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 25px !important;
  max-width: 900px !important;
}

.page-intro .intro-text {
  font-size: 1.25rem !important;
  color: #e5edf3 !important;
  max-width: 720px !important;
  margin-bottom: 20px !important;
}

.page-intro p {
  color: #c9d8e4 !important;
  max-width: 720px !important;
}

.page-intro > * {
  width: min(1100px, 90%);
  margin-left: auto;
  margin-right: auto;
}

/* Angebot-Module */
.angebot-modul {
  width: min(1100px, 90%);
  margin: 60px auto !important;
  padding: 40px 45px !important;
  background: #ffffff !important;
  border-left: 5px solid #1d5d8f !important;
  box-shadow: 0 8px 25px rgba(11, 31, 51, 0.06);
}

.angebot-modul .eyebrow {
  color: #1d5d8f !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.angebot-modul h3 {
  color: #0b1f33 !important;
  font-size: 1.9rem !important;
  line-height: 1.2 !important;
  margin-bottom: 18px !important;
}

.angebot-modul p {
  color: #3f4a54 !important;
  margin-bottom: 16px !important;
}

.angebot-feature {
  background: #f5f3ee !important;
  border-left-color: #7fb7d9 !important;
}

/* Course-Header */
.course-header {
  margin-bottom: 12px !important;
}

.course-header strong {
  display: block;
  color: #0b1f33 !important;
  font-size: 1.2rem !important;
  margin-bottom: 6px !important;
}

.course-header em {
  display: block;
  color: #5d6872 !important;
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem !important;
}

.course-description {
  color: #3f4a54 !important;
  margin-bottom: 16px !important;
}

/* Toggle-Buttons */
.toggle-btn,
.toggle-sub-btn {
  background: #0b1f33 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  cursor: pointer;
  margin: 12px 0 !important;
  transition: background 0.2s ease !important;
}

.toggle-btn:hover,
.toggle-sub-btn:hover {
  background: #1d5d8f !important;
}

/* Details-Link */
.details-link {
  display: inline-block;
  color: #1d5d8f !important;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px !important;
}

.details-link:hover {
  text-decoration: underline;
}

/* Level-Details */
.level-details {
  background: #edf4f8 !important;
  border-left: 3px solid #7fb7d9 !important;
  padding: 18px 22px !important;
  margin-top: 12px !important;
  color: #344c5d !important;
}

.level-details p {
  margin: 0 !important;
  color: #344c5d !important;
}

/* Diagnostic-CTA */
.diagnostic-cta {
  width: min(1100px, 90%);
  margin: 80px auto !important;
  padding: 60px 50px !important;
  background: #0b1f33 !important;
  color: #ffffff !important;
}

.diagnostic-cta .eyebrow {
  color: #7fb7d9 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.diagnostic-cta h3 {
  color: #ffffff !important;
  font-size: 2.2rem !important;
  margin-bottom: 20px !important;
}

.diagnostic-cta p {
  color: #e5edf3 !important;
  font-size: 1.1rem !important;
  max-width: 720px !important;
  margin-bottom: 18px !important;
}

.diagnostic-cta .details-link {
  color: #7fb7d9 !important;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 20px !important;
}

/* Info-Box */
.info-box {
  background: #ffffff !important;
  border-left: 4px solid #1d5d8f !important;
  padding: 25px 30px !important;
  margin-top: 20px !important;
  color: #17212b !important;
}

.info-box h4 {
  color: #0b1f33 !important;
  font-size: 1.1rem !important;
  margin: 20px 0 12px 0 !important;
}

.info-box ul {
  list-style: none;
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
}

.info-box li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  color: #3f4a54 !important;
}

.info-box li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1d5d8f;
  font-weight: bold;
}

/* Page-Closing */
.page-closing {
  width: min(1100px, 90%);
  margin: 80px auto 100px !important;
  padding: 50px 45px !important;
  background: #f5f3ee !important;
  border-left: 5px solid #7fb7d9 !important;
}

.page-closing .eyebrow {
  color: #1d5d8f !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-closing h3 {
  color: #0b1f33 !important;
  font-size: 1.9rem !important;
  margin-bottom: 18px !important;
}

.page-closing p {
  color: #3f4a54 !important;
  margin-bottom: 14px !important;
}

/* Diagnostik-/Page-Intro-Container-Breite */
.page-intro .container,
.diagnostic-cta .container,
.page-closing .container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 750px) {
  .angebot-modul,
  .diagnostic-cta,
  .page-closing {
    padding: 30px 25px !important;
  }
  .page-intro {
    padding: 60px 0 50px !important;
  }
}

/* ============================================
   RESSOURCEN-SEITE – zusätzliche Komponenten
   ============================================ */

/* Page-Hero */
.page-hero {
  background: #0b1f33 !important;
  color: #ffffff !important;
  padding: 80px 0 70px !important;
  width: 100%;
}

.page-hero > * {
  width: min(1100px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.page-hero .eyebrow {
  color: #7fb7d9 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 22px !important;
}

.page-hero p {
  color: #e5edf3 !important;
  font-size: 1.15rem !important;
  max-width: 750px !important;
  margin-bottom: 16px !important;
}

/* Title-with-image */
.title-with-image {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.section-image-small {
  width: 80px;
  height: auto;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Open-Access-Modul */
.open-access-modul {
  width: min(1100px, 90%);
  margin: 70px auto !important;
  padding: 45px 50px !important;
  background: #ffffff !important;
  border-left: 5px solid #1d5d8f !important;
  box-shadow: 0 8px 25px rgba(11, 31, 51, 0.06);
}

.open-access-modul .eyebrow {
  color: #1d5d8f !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.open-access-modul h2 {
  color: #0b1f33 !important;
  font-size: 2rem !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
}

.open-access-modul p {
  color: #3f4a54 !important;
  margin-bottom: 16px !important;
}

/* Accordion */
.oa-accordion {
  margin-top: 30px;
}

.oa-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #d9dee3;
}

.oa-toggle {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 18px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0b1f33 !important;
}

.oa-toggle:hover {
  color: #1d5d8f !important;
}

.oa-toggle .arrow {
  color: #1d5d8f;
  transition: transform 0.3s ease;
}

.oa-toggle.open .arrow {
  transform: rotate(180deg);
}

.oa-content {
  display: none;
  padding: 10px 0 25px 0;
}

.oa-content.show {
  display: block;
}

/* Webinar-Karte */
.oa-webinar-card {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(11, 31, 51, 0.08);
  background: #f5f3ee;
}

.oa-webinar-image {
  width: 100%;
  display: block;
}

.oa-webinar-content {
  padding: 30px 35px;
}

.oa-webinar-content h3 {
  color: #0b1f33 !important;
  font-size: 1.4rem !important;
  line-height: 1.3 !important;
  margin-bottom: 12px !important;
}

.oa-webinar-meta {
  font-size: 0.9rem !important;
  color: #5d6872 !important;
  margin-bottom: 18px !important;
}

.oa-webinar-content p {
  color: #3f4a54 !important;
  margin-bottom: 14px !important;
}

.oa-webinar-content ul {
  list-style: none;
  padding: 0 !important;
  margin: 15px 0 !important;
}

.oa-webinar-content ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #3f4a54 !important;
}

.oa-webinar-content ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1d5d8f;
  font-weight: bold;
}

/* Button */
.oa-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #0b1f33;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.oa-button:hover {
  background: #1d5d8f;
}

/* Social Links */
.social-links {
  width: min(1100px, 90%);
  margin: 50px auto 80px !important;
  text-align: center;
  font-size: 0.95rem;
  color: #5d6872;
}

.social-links a {
  color: #1d5d8f !important;
  text-decoration: none;
  font-weight: 500;
  margin: 0 4px;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 750px) {
  .open-access-modul {
    padding: 30px 25px !important;
  }
  .title-with-image {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .page-hero {
    padding: 60px 0 50px !important;
  }
}

/* ============================================
   KONTAKT-FORMULAR
   ============================================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  max-width: 600px;
}

.contact-form label {
  display: block;
  font-weight: 500;
  color: #0b1f33;
  font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #d9dee3;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  color: #17212b;
  background: #ffffff;
  box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1d5d8f;
  box-shadow: 0 0 0 3px rgba(29, 93, 143, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

/* GDPR-Checkbox */
.contact-form .gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5d6872;
  font-weight: 400;
  margin-top: 5px;
}

.contact-form .gdpr input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.contact-form .gdpr a {
  color: #1d5d8f;
  text-decoration: underline;
}

/* Button */
.contact-form .button-primary {
  align-self: flex-start;
  background: #0b1f33;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 10px;
}

.contact-form .button-primary:hover {
  background: #1d5d8f;
}

/* ============================================
   THANK-YOU-SEITE & ALLGEMEINE KOMPONENTEN
   ============================================ */

/* Page-Hero – für Thank-you, Kontakt, etc. */
.page-hero {
  background: #0b1f33 !important;
  color: #ffffff !important;
  padding: 80px 0 70px !important;
}

.page-hero .container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.page-hero .eyebrow {
  color: #7fb7d9 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.page-hero h2 {
  color: #ffffff !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  line-height: 1.1 !important;
  margin-bottom: 22px !important;
}

.page-hero p {
  color: #e5edf3 !important;
  font-size: 1.15rem !important;
  max-width: 720px !important;
  margin-bottom: 16px !important;
}

/* Section-Intro – heller Bereich */
.section-intro {
  background: #ffffff !important;
  padding: 75px 0 !important;
}

.section-intro .content-narrow {
  width: min(750px, 90%);
  margin: 0 auto;
}

.section-intro .content-centred {
  text-align: center;
}

.section-intro .lead {
  font-size: 1.25rem !important;
  color: #3f4a54 !important;
  margin-bottom: 30px !important;
}

/* Buttons – allgemein */
.button {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.button-primary {
  background: #0b1f33 !important;
  color: #ffffff !important;
}

.button-primary:hover {
  background: #1d5d8f !important;
}

.button-secondary {
  border: 2px solid #0b1f33 !important;
  color: #0b1f33 !important;
  background: transparent !important;
}

.button-secondary:hover {
  background: #0b1f33 !important;
  color: #ffffff !important;
}

/* Hero-Actions – für Button-Gruppen */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

/* ============================================
   INTEREST-FORMULAR (Five Diagnostic Questions)
   ============================================ */

.interest-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
  margin: 30px auto 0;
  text-align: left;
}

.interest-form label {
  display: block;
  font-weight: 500;
  color: #0b1f33;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.interest-form input[type="text"],
.interest-form input[type="email"] {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9dee3;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  color: #17212b;
  background: #ffffff;
  box-sizing: border-box;
}

.interest-form input[type="text"]:focus,
.interest-form input[type="email"]:focus {
  outline: none;
  border-color: #1d5d8f;
  box-shadow: 0 0 0 3px rgba(29, 93, 143, 0.1);
}

/* Consent-Checkbox */
.interest-form .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #5d6872;
  font-weight: 400;
  margin-top: 5px;
}

.interest-form .consent-label input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Button */
.interest-form .cta-button {
  align-self: flex-start;
  background: #0b1f33;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 10px;
}

.interest-form .cta-button:hover {
  background: #1d5d8f;
}

/* Logo im Header */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.learner-logo {
  height: 40px;        /* feste Höhe */
  width: auto;         /* Breite automatisch */
  max-width: 60px;     /* maximale Breite */
  display: block;
  object-fit: contain;
}

.logo span {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Logo im Header */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.learner-logo {
  height: 40px;
  width: auto;
  max-width: 60px;
  display: block;
  object-fit: contain;
}

.logo span {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
}