:root {
      --orange: #CD4B0A;
      --navy:   #1A365D;
      --light:  #f9f6f3;
      --border: #e4ddd6;
      --text:   #2d2d2d;
      --muted:  #6b6b6b;
    } 
.text_container h2 {
      color: var(--navy);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 12px;
	  text-align:left;
    }

.intro-lead {
      color: var(--light-black);
      margin-bottom: 40px;
      border-left: 4px solid var(--primary-orange);
      padding-left: 16px;
    }
.text_container h3 {
      font-size: 1.2em;
      color: var(--navy);
      font-weight: 700;
      margin: 48px 0 14px;
      padding-bottom: 6px;
      border-bottom: 2px solid var(--border);
    }
.text_container p { margin-bottom: 14px; color: var(--light-black);}
.badge {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 4px;
      margin-right: 6px;
      vertical-align: middle;
    }

    .badge.navy { background: var(--navy); }

    /* ── Info-Karten (Prüfungen) ── */
    .aufgabe {
      background: var(--light);
      border: 1px solid var(--border);
      border-left: 5px solid var(--navy);
      border-radius: 8px;
      padding: 20px 22px;
      margin-bottom: 16px;
    }

    .aufgabe-header {
      font-weight: 700;
      color: var(--navy);
      font-size: 0.8em;
      margin-bottom: 8px;
    }

    .aufgabe p { margin-bottom: 6px; }
    .aufgabe p:last-child { margin-bottom: 0; }

    /* ── Tipp-Box ── */
    .tipp {
      background: #fff8f5;
      border: 1px solid #f2cbb5;
      border-left: 5px solid var(--orange);
      border-radius: 8px;
      padding: 18px 22px;
      margin: 28px 0;
    }

    .tipp::before {
      content: "💡 Tipp";
      display: block;
      font-weight: 700;
      color: var(--orange);
      margin-bottom: 6px;
      font-size: 0.8em;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* ── Erklärungs-Box ── */
    .erklaerung {
      background: #f0f4fa;
      border: 1px solid #c8d8ef;
      border-left: 5px solid var(--navy);
      border-radius: 8px;
      padding: 18px 22px;
      margin: 28px 0;
    }

    .erklaerung::before {
      content: "ℹ️ Wichtig";
      display: block;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      font-size: 0.8em;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* ── Kosten-Liste ── */
    .kosten-liste {
      list-style: none;
      padding: 0;
      margin: 16px 0;
    }

    .kosten-liste li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      background: var(--light);
    }

    .kosten-liste li:first-child { border-radius: 8px 8px 0 0; }
    .kosten-liste li:last-child  { border-bottom: none; border-radius: 0 0 8px 8px; }

    .kosten-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .kosten-text strong {
      display: block;
      color: var(--navy);
      font-weight: 700;
    }

    /* ── CTA ── */
    .cta-block {
      background: var(--navy);
      color: #fff;
      border-radius: 10px;
      padding: 12px 28px;
      margin-top: 5px;
      text-align: center;
    }
 .cta-block h3 { color: var(--white); text-align:center;font-size: 1.2em; }

    .cta-block p { color: #c8d8ef; margin-bottom: 24px; }
    
    .cta-buttons {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 700;
      font-size: 1em;
      text-decoration: none;
      transition: opacity .2s;
    }

    .btn:hover { opacity: .85; }
    .btn-orange { background: var(--orange); color: #fff; }
    .btn-white  { background: #fff; color: var(--navy); }
    /* ── Responsive ── */
    @media (max-width: 540px) {
     .text_container h2 { font-size: 1.5rem; }
     .text_container h3 { font-size: 1.15rem; }
    }