/* ========================================================================= */
/* 🚀 GLOBALE GRUNDEINSTELLUNGEN & VARIABLEN */
/* ========================================================================= */

html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

:root {
    --primary-color: #00507B;
    --primary-dark: #003756;
    --secondary-color: #8C4782;
    --accent-color: #42A8A8;
    --accent-color-dark: #2D8080;
    --background-light: #FFFFFF;
    --background-grey: #F6FAFC;
    --background-soft-grey: #F0F4F7;
    --text-dark: #2C2C2C;
    --text-medium: #5F5F5F;
    --text-light: #FBFBFB;
    --border-color: #D8D8D8;
    --shadow-light: rgba(0,0,0,0.08);
    --shadow-medium: rgba(0,0,0,0.15);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: var(--background-grey);
    color: var(--text-dark);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* Hilfsklasse (aktuell leer) */
body.menu-open {
    /* Optional: overflow-y: hidden; für Hauptseite, wenn Menü offen */
}

/* Allgemeine Container-Definition */
.container {
    width: 85%;
    max-width: 650px; /* Standardbreite für Inhalte */
    margin: auto;
    overflow: hidden;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* ========================================================================= */
/* TYPOGRAPHIE & ALLGEMEINE ELEMENTE */
/* ========================================================================= */

h1, h2, h3, h4 {
    font-family: 'Lato', sans-serif;
    color: var(--primary-dark);
    margin-bottom: 18px;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.1em; }
h3 { font-size: 1.7em; }
h4 { font-size: 1.3em; }

p {
    margin-bottom: 1.2em;
    font-size: 1.05em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Buttons (allgemein) */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 14px 30px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    font-weight: 700;
    font-size: 1.05em;
    box-shadow: 0 4px 8px var(--shadow-light);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px var(--shadow-medium);
}

.btn-small {
    padding: 12px 25px;
    font-size: 0.98em;
}

/* ========================================================================= */
/* HEADER & NAVIGATION */
/* ========================================================================= */

header {
    background: var(--background-light);
    color: var(--text-dark);
    /* Vertikale Polsterung reduziert */
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 5px var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo h1 {
    margin: 0;
    font-size: 1.6em;
    color: var(--primary-color);
    line-height: 1.2;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Basis-Padding für Smartphone */
    padding: 0 15px; 
    max-width: 1400px; 
}

header .logo h1 a {
    color: var(--primary-color);
    text-decoration: none;
}

header .logo h1 a:hover {
    color: var(--primary-dark);
}

/* Desktop Navigation (Standard ab 1025px) */
header nav {
    /* Muss außerhalb des MQ sein, um von Mobile überschrieben zu werden */
    display: block;
    position: static;
    width: auto;
    background: none;
    box-shadow: none;
    transition: none;
    padding: 0;
    overflow-y: visible;
    max-height: none;
    border-radius: 0;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    /* Vertikale Polsterung der Links reduziert */
    padding: 1px 8px; 
    border-radius: 5px;
    white-space: nowrap;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
    border-bottom: none;
}

header nav ul li a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Desktop CTA Button im Header */
header nav ul li:last-child a[aria-label="Termin für ein Coaching buchen"] {
    background-color: var(--primary-color);
    color: white;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: bold;
    margin-left: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border-bottom: none;
}

header nav ul li:last-child a[aria-label="Termin für ein Coaching buchen"]:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Mobile Menü Toggle (Desktop Standard: ausgeblendet) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}


/* ========================================================================= */
/* HERO SECTION */
/* ========================================================================= */

.hero {
    background-color: var(--background-soft-grey);
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-text-top,
.hero-text-bottom,
.hero-image-container {
    width: 100%;
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
}

.hero-text-top h2 {
    font-size: 2.4em;
    color: var(--primary-dark);
    line-height: 1.3;
}

.hero-text-bottom .quote {
    font-family: 'Lato', serif;
    font-style: italic;
    font-size: 2.2em;
    color: var(--primary-dark);
    line-height: 1.4;
    margin: 0;
}

.hero-text-bottom .quote-author {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 0;
}

.hero-image-container {
    max-width: 380px;
    overflow: hidden;
}

.hero-main-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.hero-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ========================================================================= */
/* ALLGEMEINE SECTIONS */
/* ========================================================================= */

section {
    padding: 80px 0;
    background-color: var(--background-light);
    margin-bottom: 30px;
    box-shadow: 0 8px 20px var(--shadow-light);
    border-radius: 15px;
}

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


/* ========================================================================= */
/* ABOUT ME SECTION */
/* ========================================================================= */

.about-me .container h1, 
.about-me .container h3 {
    text-align: center;
    margin-bottom: 40px;
}

.about-me p {
    text-align: justify;
    margin-bottom: 18px;
    font-size: 1.05em;
}
.about-me ul {
    list-style: disc;
    list-style-position: outside;
    margin-left: 25px;
    margin-bottom: 1.5em;
}

.about-me ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.about-image-container {
    text-align: center;
    margin-bottom: 40px;
}

.about-image-container .profile-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.about-image-container .profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ========================================================================= */
/* OFFERS SECTION (Angebote) */
/* ========================================================================= */

.offers .container {
    text-align: center;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding: 0;
    box-sizing: border-box;
}

.offer-item {
    background-color: var(--background-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow-medium);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.offer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* Termin-Details Abstand */
.offer-item h3.detail-header {
    margin-top: 30px; 
    margin-bottom: 18px; 
}

.offer-item h4 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 1.8em;
}

.offer-item ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.offer-item ul li {
    padding: 12px 0;
    border-bottom: 1px dotted var(--border-color);
    font-size: 1.1em;
}

.offer-item ul li:last-child {
    border-bottom: none;
}

/* ========================================================================= */
/* CONTACT SECTION */
/* ========================================================================= */

.contact {
    text-align: inherit;
}

.text-block h3 {
    text-align: center;
}

.text-block p {
    text-align: left;
}

.button-container {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact p:last-of-type {
    text-align: center;
    margin-top: 50px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.contact-icons a {
    text-decoration: none;
    color: var(--primary-dark); /* Standardfarbe für den Link-Container */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icons i {
    font-size: 50px;
    transition: color 0.3s ease;
    /* Icon erbt die Farbe von .contact-icons a, was var(--primary-dark) ist. */
}

.contact-icons a:hover i {
    color: var(--primary-color); /* Hover-Effekt: alle Icons werden heller/blauer */
    transform: scale(1.1);
}

/* ========================================================================= */
/* FOOTER */
/* ========================================================================= */

footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 0;
    padding-bottom: 0;
    max-width: 960px;
    margin: 0 auto;
}

footer p {
    margin: 0;
    font-size: 0.95em;
}

footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 0px;
}

.social-icons a {
    color: white;
    font-size: 1.8em;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

/* ========================================================================= */
/* DATENSCHUTZ / IMPRESSUM / HILFSKLASSEN */
/* ========================================================================= */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#datenschutz h1,
#impressum h1 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-dark);
}

#datenschutz h2,
#impressum h2 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

#datenschutz h3,
#impressum h3 {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.nutzen-liste {
    list-style: disc;
    list-style-position: outside;
    margin: 0;
    padding-left: 25px;
}

.nutzen-liste li {
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
}

/* ========================================================================= */
/* EBOOK SECTIONS */
/* ========================================================================= */

.ebook-page-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.ebook-detail-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.ebook-main-area {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.ebook-info-area {
    flex-grow: 1;
    text-align: left;
    max-width: 600px;
}

.ebook-description-body {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 1.2em;
    color: var(--text-dark);
}

.ebook-features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.ebook-features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
}

.ebook-features-list i.fas.fa-check {
    margin-right: 15px;
    font-size: 1.2em;
    color: var(--primary-color);
}

.ebook-call-to-action-text {
    display: block !important;
    text-align: center !important;
    max-width: 550px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 23px !important;
    font-size: 1.2em;
    color: var(--primary-dark);
    font-weight: 600;
}

.ml-embedded {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 550px !important;
    display: block !important;
    text-align: center !important;
}

.small-info-text {
    margin-top: 20px;
    font-size: 0.9em;
    text-align: center;
}

.ebook-teaser {
    background-color: var(--background-light);
    padding: 60px 0;
    text-align: center;
}

.ebook-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .ebook-content {
        flex-direction: row;
        text-align: left;
    }
}

.ebook-image-container {
    flex-shrink: 0;
    max-width: 250px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.ebook-image {
    width: 100%;
    height: auto;
    display: block;
}

#ebook-teaser .ebook-text-container a.btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

/* ========================================================================= */
/* COACHING & BOOKING SECTIONS */
/* ========================================================================= */

.booking-options-section {
    padding: 60px 0;
    background-color: var(--background-light);
    text-align: center;
}

.booking-options-section h1 {
    color: var(--text-dark);
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.button-group-coaching {
    display: flex;
    flex-direction: column; 
    gap: 15px; 
    margin-top: 25px; 
    align-items: center;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.option-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: var(--background-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.offer-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.flexible-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.option-item h3 {
    color: var(--primary-color);
    font-family: 'Lato', sans-serif;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

.offer-content p {
    color: var(--text-medium);
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
}

.option-item .btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.option-item .btn:hover {
    background-color: var(--primary-dark);
}

.price-options-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.online-offer, .cash-offer {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cash-offer {
    border-style: solid;
    border-color: #555;
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.price-info {
    margin-top: auto;
    padding-top: 10px;
    text-align: center;
}

.price-large {
    font-size: 2.2em;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
}

.price-large.price-once,
.price-large.price-seconde {
    font-size: 2.0em;
    color: #333;
}

.price-large.reduced {
    color: var(--primary-color);
}

.price-large.old {
    font-size: 1.2em;
    text-decoration: line-through;
    color: #999;
    display: inline-block;
    margin-right: 10px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.discount-badge {
    color: #666;
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 5px;
    text-align: center;
    display: block;
}

.reduced-price-reason {
    text-align: center;
    font-size: 1.1em;
    color: #666;
    margin-top: 10px;
    margin-bottom: 20px;
    min-height: 1.1em;
}

/* --- Styling für den Einleitungstext der Angebote --- */
.intro-text-coaching {
    max-width: 800px; 
    margin: 30px auto 40px auto; 
    padding: 30px 30px 25px 30px; 
    border: 1px solid #ccc; 
    border-radius: 8px; 
    background-color: #fcfcfc; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); 
    line-height: 1.6; 
    text-align: left; 
    font-size: 1.05em; 
    color: #333; 
}

.intro-text-coaching > strong {
    display: block; 
    font-size: 1.15em; 
    color: var(--primary-color); 
    margin: 0 0 35px 0; 
    font-weight: 700; 
    text-align: center; 
    padding-bottom: 0;
}

.intro-text-coaching .point {
    display: flex; 
    align-items: flex-start; 
    margin: 0 auto 30px auto; 
    padding-left: 0; 
    max-width: 90%; 
}

.intro-text-coaching .point::before {
    color: #333; 
    font-weight: 700;
    font-size: 1em;
    margin-right: 12px;
    min-width: 20px; 
    text-align: right;
    content: "•"; 
}

.intro-text-coaching #point-1::before { 
    content: "1."; 
}
.intro-text-coaching #point-2::before { 
    content: "2."; 
}

.intro-text-coaching .point:last-child {
    margin-bottom: 0; 
}

/* ========================================================================= */
/* 🆕 FAMILIENAUSTELLUNG SEITE SPEZIFISCHE ANPASSUNGEN */
/* ========================================================================= */

#familienaufstellung-intro, 
#nutzen-aufstellung, 
#ablauf-aufstellung {
    /* Abstand zwischen den Sektionen beibehalten (kleinster Margin) */
    margin-bottom: 8px; 
    
    /* Vertikales Padding der Sektionen reduziert */
    padding-top: 50px; 
    padding-bottom: 50px; 
}

/* Verringert den Abstand zwischen Absätzen innerhalb dieser Seite */
#familienaufstellung-intro p,
#ablauf-aufstellung p {
    margin-bottom: 0.8em; 
}

/* ========================================================================= */
/* 🆕 ZEITLEISTE (TIMELINE) SECTION - FINAL LIST/BOX STYLE */
/* ========================================================================= */

.timeline-section {
    background-color: var(--background-grey); 
    padding: 0; 
    box-shadow: none; 
    margin-bottom: 80px; 
}

/* 1. Gesamte Sektion erhält die Rahmung und den Schatten des "Über mich" Abschnitts */
.timeline-section .container {
    max-width: 800px; /* Basierend auf der Tablet-Breite (wird in MQs überschrieben) */
    padding: 60px 40px; 
    background-color: var(--background-light); 
    border-radius: 10px; 
    box-shadow: 0 4px 10px var(--shadow-light);
    margin-top: 40px; 
    margin-bottom: 40px; 
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.timeline {
    position: relative;
    padding: 0; 
}

/* Vertikale Linie und Dots komplett entfernt */
.timeline::before,
.timeline-dot {
    content: none; 
    display: none;
}

/* **Abstände reduziert und Trennlinien entfernt** */
.timeline-item {
    margin-bottom: 15px; /* Stark reduzierter Abstand zwischen den Einträgen */
    padding: 0; 
    position: relative;
    border-bottom: none; /* Trennlinie entfernt */
}

/* Letzter Eintrag entfernt unteren Abstand */
.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* 3. Inhalt: Box-Styling entfernt */
.timeline-content {
    background: none; 
    padding: 0; 
    border-radius: 0;
    border: none; 
    box-shadow: none; 
    transition: none;
}

.timeline-item:hover .timeline-content {
    box-shadow: none; 
}

/* **WICHTIGE KORREKTUR: H4-Styling entfernen/deaktivieren** */
.timeline-content h4 {
    display: none; 
}

.timeline-content h4::before {
    content: none;
}

/* **NEUE REGEL FÜR DEN KOMBINIERTEN LEBENSLAUF-EINTRAG (p)** */
.timeline-content p {
    margin-top: 0;
    margin-bottom: 0; /* Wichtig für reduzierten Abstand zwischen Einträgen */
    font-size: 1.05em; 
    line-height: 1.6;
    color: var(--text-dark); 
    padding-left: 0; 
}

/* Stellt sicher, dass das Strong-Element (für Zeit und Titel) dezent dominiert */
.timeline-content p strong {
    font-weight: 600; /* Weniger dominant als H-Tags (700/800) */
    color: var(--primary-dark);
    font-family: 'Lato', sans-serif; 
    margin-right: 5px; /* Kleiner Abstand zum Doppelpunkt */
    white-space: nowrap; /* Hält Zeit und Titel zusammen */
}

/* ========================================================================= */
/* 💻 MEDIA QUERIES (RESPONSIVE DESIGN) */
/* ========================================================================= */

/* --- AB 768px (Tablet Horizontal / Desktop) --- */
@media (min-width: 768px) {
    /* Setzt die allgemeine Breite für Content-Container (wie gewollt) */
    .container {
        width: 80%;
    }
    
    /* FIX FÜR TABLET PADDING: Stellt sicher, dass der Header-Container seine volle Breite behält 
       und den Abstand zum Rand auf 50px erhöht. */
    header .container {
        width: auto; 
        max-width: 1400px; 
        padding: 0 50px !important; /* WICHTIG: !important, um die mobile Regel zu überschreiben */
    }

    /* ------------------------------------------------------------- */
    /* 2. Visuelle Container Breite (Die "Box" für About/Contact/Timeline) */
    .about-me .container,
    .contact .container,
    .timeline-section .container {
        max-width: 800px; /* Tablet Box Breite */
    }

    /* ------------------------------------------------------------- */
    /* 3. INHALT auf die ursprüngliche Breite (650px) beschränken und zentrieren */
    /* Dies gilt nun für den gesamten inneren Content auf Tablets UND Desktops */
    .about-me .container > p, 
    .about-me .container > ul,
    .about-me .container > h2, 
    .about-me .container > h3, 
    .about-me .container > h4,
    
    .contact .container > p, 
    .contact .container > ul, 
    .contact .container > h2,
    .contact .container > h3, 
    .contact .container > h4,
    
    /* KORREKTUR/BESTÄTIGUNG: TIMELINE Inhalt auf 650px begrenzen */
    .timeline-section .container > h2,
    .timeline-section .container > .timeline, 
    
    /* Wrapper Divs */
    .about-me .container > div:not(.about-image-container),
    .contact .container > div:not(.contact-icons) 
    { 
        max-width: 650px; 
        margin-left: auto;
        margin-right: auto;
    }

    /* Ausnahmen und Spezifika für About Me: Die Haupt-Titel bleiben zentriert (da nur text-align: center) */
    .about-me .container h1, 
    .about-me .container h3 {
        text-align: center; 
    }

    /* Sicherstellen, dass die Bildebene und die Icons die volle 800px-Breite nutzen */
    .about-me .container > .about-image-container,
    .contact .container > .contact-icons {
        max-width: 100%; 
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Allgemeine Anpassungen für 768px+ */
    section {
        padding: 60px 0;
        margin-bottom: 25px;
        border-radius: 10px;
    }
    .about-me .container h1,
    .about-me .container h3 {
        margin-bottom: 30px;
    }
    .about-me p, .about-me ul li {
        font-size: 1em;
    }
    .about-image-container .profile-image {
        max-width: 300px;
    }
    .offers .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 35px;
    }
    .offer-item {
        padding: 30px;
    }
    .offer-item h4 {
        font-size: 1.6em;
    }
    footer {
        padding: 25px 0;
        margin-top: 40px;
    }
}

/* --- AB 1025px (Große Bildschirme) --- */
@media (min-width: 1025px) {
    /* Spacing für PC: Hier behalten wir 60px bei, da die PC-Variante perfekt war */
    header .container {
        padding: 0 60px; 
    }
    
    /* 1. Visuelle Container Breite (Die "Box" für About/Contact/Timeline) */
    .about-me .container,
    .contact .container,
    .timeline-section .container {
        max-width: 900px; /* Die breitere Box für Desktops */
    }
    
    /* Stellt sicher, dass das Mobile-Menü auf dem Desktop nicht angezeigt wird */
    .mobile-menu-toggle {
        display: none !important; 
    }

    /* Zusätzliche Desktop-Anpassungen */
    h1 { font-size: 2.8em; }
    h2 { font-size: 2.1em; }
    h3 { font-size: 1.7em; }
    p { font-size: 1.05em; }

    .about-image-container .profile-image {
        max-width: 400px;
    }
    
    .contact-icons {
        gap: 60px;
    }
    
    .offers,
    .ebook-teaser {
        text-align: center;
    }

    .offer-item p,
    .offer-item ul,
    .ebook-content p {
        text-align: left;
    }

    .offer-item p.small-info-text {
        text-align: center;
    }
}

/* --- TABLET NAVIGATION OVERRIDE (768px bis 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    header nav.active {
        /* Schmaler gemacht und rechtsbündig (Funktioniert bereits) */
        left: auto; 
        right: 0; 
        width: 320px; 
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
}


/* --- 1024px und kleiner (Smartphone/Tablet Navigation) --- */
@media (max-width: 1024px) {
    /* FIX: Navigation wird bis 1024px zum Hamburger Menü */
    
    /* Hamburger Menü sichtbar machen */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Desktop Navigation ausblenden und als Mobile Slide-out definieren */
    header nav {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background-light);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 0;
        overflow-y: hidden;
        transition: max-height 0.4s ease-in-out;
        padding: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    header nav.active {
        display: block;
        max-height: 500px; 
        padding: 10px 0;
    }
    
    header nav ul {
        flex-direction: column;
        /* Zentriert die Liste im aufgeklappten Menü (Funktioniert bereits) */
        align-items: center; 
        padding: 0 20px;
    }

    header nav ul li {
        margin: 0;
        width: 100%;
        /* Menüpunkte zentrieren (Funktioniert bereits) */
        text-align: center; 
    }
    
    header nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    header nav ul li:last-child a[aria-label="Termin für ein Coaching buchen"] {
        margin-left: 0;
        background-color: var(--primary-color);
        color: white;
        text-align: center;
        padding: 15px;
        border-radius: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transform: none;
        margin-top: 15px;
        margin-bottom: 20px;
        font-weight: bold;
        border-bottom: none;
    }

    /* Weitere mobile/tablet Anpassungen */
    header .container {
        /* Reduziert Padding für minimale Höhe */
        padding: 5px 0; 
        min-height: 45px;
    }
    
    /* ... (Rest der max-width: 1024px Anpassungen) ... */

    /* Entfernt Box-Styling auf Mobilgeräten (< 768px) */
    @media (max-width: 767px) {
        .about-me .container,
        .contact .container,
        .timeline-section .container { 
            max-width: 100%; 
            box-shadow: none; 
            margin-top: 20px;
            margin-bottom: 20px;
            padding-top: 25px; 
            padding-bottom: 25px;
            border: none; 
        }
    }
}

/* --- 480px und kleiner --- */
@media (max-width: 480px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    .offers .container h3 {
        font-size: 1.8em;
    }
    h3 { font-size: 1.5em; }
    h4 { font-size: 1.2em; }
    p { font-size: 1em; }
    .btn {
        padding: 12px 22px;
        font-size: 0.95em;
    }
    .hero-image-container {
      max-width: 250px;
    }
}

/* --- 360px und kleiner --- */
@media (max-width: 360px) {
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    .offers .container h3 {
        font-size: 1.5em;
    }
    h3 { font-size: 1.3em; }
    h4 { font-size: 1.05em; }
    p { font-size: 0.98em; }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}


/* ========================================================================= */
/* 💖 SEKTION 11: BREITERE CONTAINER & VISUELLE ABGRENZUNG (WICHTIG!) */
/* ========================================================================= */

/* 1. Visuelle Box für die "Über mich" Seite */
.about-me .container {
    /* Innenabstand erhöhen */
    padding: 40px 40px; 
    
    /* Optische Abgrenzung */
    background-color: var(--background-light); 
    border-radius: 10px; 
    box-shadow: 0 4px 10px var(--shadow-light);
    
    /* Fügt Abstand zur umgebenden Sektion hinzu */
    margin-top: 40px; 
    margin-bottom: 40px; 
}

/* 2. Visuelle Box für die "Kontakt"-Seite */
.contact .container {
    /* Innenabstand erhöhen */
    padding: 40px 40px; 
    
    /* Optische Abgrenzung */
    background-color: var(--background-light); 
    border-radius: 10px; 
    box-shadow: 0 6px 15px var(--shadow-medium);
    border: 1px solid var(--border-color);
    
    /* Fügt Abstand zur umgebenden Sektion hinzu */
    margin-top: 40px; 
    margin-bottom: 40px; 
}


















/*
  Silktide Consent Manager - https://silktide.com/consent-manager/
*/

/* --------------------------------
  Global Styles 
-------------------------------- */
#silktide-wrapper {
  --focus: 0 0 0 2px #ffffff, 0 0 0 4px #000000, 0 0 0 6px #ffffff;
  --boxShadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
  --fontFamily: Helvetica Neue, Segoe UI, Arial, sans-serif;
  --primaryColor: #00507B;
  --backgroundColor: #ffffff;
  --textColor: #2c2c2c;
  --backdropBackgroundColor: #00000033;
  --backdropBackgroundBlur: 0px;
  --cookieIconColor: #FFFFFF;
  --cookieIconBackgroundColor: #00507B;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  pointer-events: none;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Backdrop (Global) */
#silktide-backdrop-global {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  border: 0px;
  display: none;
}

/* --------------------------------
  Links
-------------------------------- */
#silktide-wrapper a {
  all: unset;
  display: inline-block;
  color: var(--primaryColor);
  text-decoration: underline;
}

#silktide-wrapper a:hover {
  cursor: pointer;
  color: var(--textColor);
}

/* --------------------------------
  Focus Styles
-------------------------------- */
#silktide-wrapper a:focus,
#silktide-wrapper #silktide-banner button:focus,
#silktide-wrapper #silktide-modal button:focus,
#silktide-wrapper #silktide-cookie-icon:focus {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 5px;
}

#silktide-wrapper #silktide-cookie-icon:focus {
  border-radius: 50%;
}

/* --------------------------------
  General Styles
-------------------------------- */

#silktide-wrapper .st-button {
  border: 2px solid var(--primaryColor);
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  border-radius: 5px;
  box-sizing: border-box; 
  flex-grow: 1; 
  min-width: 150px;
}

/* --- BUTTON AKZEPTIEREN/PRIMARY (st-button--primary) --- */
#silktide-wrapper .st-button--primary {
  /* Standard: Kräftiges Blau (Primary Color) */
  color: var(--backgroundColor);
  background-color: var(--primaryColor);
}

#silktide-wrapper .st-button--primary:hover {
  /* Hover: Umkehrung, Fokus auf Text */
  background-color: var(--backgroundColor);
  color: var(--primaryColor);
}

/* --- BUTTON ABLEHNEN/SECONDARY (st-button--secondary) - SEHR UNAUFFÄLLIG GEMACHT --- */
#silktide-wrapper .st-button--secondary {
  /* Änderung: Keine Umrandung, transparenter Hintergrund */
  background-color: transparent;
  color: var(--primaryColor);
  border: none;
  /* Padding anpassen, da der Border fehlt, um die Höhe beizubehalten */
  padding: 12px 22px; 
}

#silktide-wrapper .st-button--secondary:hover {
  /* Leichter Hover-Effekt, um Klickbarkeit zu signalisieren */
  background-color: #f0f0f0; 
  color: var(--primaryColor);
}

/* --------------------------------
  Banner
-------------------------------- */
#silktide-banner {
  font-family: var(--fontFamily);
  color: var(--textColor);
  background-color: var(--backgroundColor);
  box-sizing: border-box;
  padding: 32px;
  border-radius: 5px;
  pointer-events: auto;
  border: 0px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  
  /* Korrektur für Desktop: Entfernt die feste max-width */
  width: auto;
  max-width: calc(100% - 32px); 
  
  max-height: calc(100vh - 32px);
  transform: translate(0, -20px);
  opacity: 0;
  animation: silktide-slideInDown 350ms ease-out forwards;
  animation-delay: 0.3s;
  box-shadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
}

/* Banner Anpassung für volle Breite auf Mobilgeräten */
@media (max-width: 600px) {
    #silktide-banner {
        left: 8px !important; 
        right: 8px !important;
        width: calc(100% - 16px) !important;
        max-width: none !important; 
        padding: 16px !important;
    }
    /* Stellt sicher, dass die Buttons untereinander stehen */
    #silktide-banner .actions {
        flex-direction: column;
    }
}


#silktide-banner:focus {
  border-radius: 50%;
}

#silktide-banner.center {
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  position: fixed;
  transform: translate(-50%, calc(-50% - 20px));
  animation: silktide-slideInDown-center 350ms ease-out forwards;
}

#silktide-banner.bottomLeft {
  bottom: 16px;
  left: 16px;
  position: fixed;
}

#silktide-banner.bottomCenter {
  bottom: 16px;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -20px);
  animation: silktide-slideInDown-bottomCenter 350ms ease-out forwards;
}

#silktide-banner .preferences {
  display: flex;
  gap: 5px;
  border: none;
  padding: 15px 0px;
  background-color: transparent;
  color: var(--primaryColor);
  cursor: pointer;
  font-size: 16px;
}

#silktide-banner .preferences span {
  display: block;
  white-space: nowrap;
  text-decoration: underline;
}

#silktide-banner .preferences span:hover {
  color: var(--textColor);
}

#silktide-banner .preferences:after {
  display: block;
  content: '>';
  text-decoration: none;
}

#silktide-banner p {
  font-size: 16px;
  line-height: 24px;
  margin: 0px 0px 15px;
}

#silktide-banner a {
  display: inline-block;
  color: var(--primaryColor);
  text-decoration: underline;
  background-color: var(--backgroundColor);
}

#silktide-banner a:hover {
  color: var(--textColor);
}

#silktide-banner a.silktide-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: var(--primaryColor); 
  margin-left: auto;
  width: 48px;
  height: 48px;
}


#silktide-banner .actions {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-top: 24px;
}

@media (min-width: 600px) {
  #silktide-banner .actions {
    flex-direction: row;
    align-items: center;
  }
}

#silktide-banner .actions-row {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

/* --------------------------------
  Modal
-------------------------------- */
#silktide-modal {
  display: none;
  pointer-events: auto;
  overflow: auto;
  width: 800px;
  max-width: 100%;
  max-height: 100%;
  border: 0px;
  transform: translate(0px, -20px);
  opacity: 0;
  animation: silktide-slideInUp-center 350ms ease-out forwards;
  box-shadow: -5px 5px 10px 0px #00000012, 0px 0px 50px 0px #0000001a;
  font-family: var(--fontFamily);
  color: var(--textColor);
  flex-direction: column;
  padding: 30px;
  background-color: var(--backgroundColor);
  border-radius: 5px;
  box-sizing: border-box;
}

/* --------------------------------
  Modal - Header
-------------------------------- */
#silktide-modal header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

#silktide-modal h1 {
  font-family: var(--fontFamily);
  color: var(--textColor);
  font-size: 24px;
  font-weight: 500;
  margin: 0px;
}

#silktide-modal .modal-close {
  display: inline-flex;
  border: none;
  padding: 13px;
  border: 0px;
  cursor: pointer;
  background: var(--backgroundColor);
  color: var(--primaryColor);
}

#silktide-modal .modal-close svg {
  fill: var(--primaryColor);
}

/* --------------------------------
  Modal - Content
-------------------------------- */

#silktide-modal section {
  flex: 1;
  margin-top: 32px;
}

#silktide-modal section::-webkit-scrollbar {
  display: block; 
  width: 5px; 
}

#silktide-modal section::-webkit-scrollbar-thumb {
  background-color: var(--textColor); 
  border-radius: 10px; 
}

#silktide-modal p {
  font-size: 16px;
  line-height: 24px;
  color: var(--textColor);
  margin: 0px 0px 15px;
}

#silktide-modal p:last-of-type {
  margin: 0px;
}

#silktide-modal fieldset {
  padding: 0px;
  border: none;
  margin: 0px 0px 32px;
}

#silktide-modal fieldset:last-of-type {
  margin: 0px;
}

#silktide-modal legend {
  padding: 0px;
  margin: 0px 0px 10px;
  font-weight: 700;
  color: var(--textColor);
  font-size: 16px;
}

#silktide-modal .cookie-type-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;  
}

/* --------------------------------
  Modal - Switches
-------------------------------- */
#silktide-modal .switch {
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  height: 34px;
  width: 74px;
  cursor: pointer;
}

#silktide-modal .switch:focus-within {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 25px;
}

#silktide-modal .switch input {
  opacity: 0;
  position: absolute;
}

/* Unchecked Switch Styles */
#silktide-modal .switch__pill {
  position: relative;
  display: block;
  height: 34px;
  width: 74px;
  background: var(--textColor);
  border-radius: 25px;
}

#silktide-modal .switch__dot {
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  height: 30px;
  width: 30px;
  background: var(--backgroundColor);
  border-radius: 50%;
  transition: left 150ms ease-out;
}

#silktide-modal .switch__off,
#silktide-modal .switch__on {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: var(--backgroundColor);
  position: absolute;
  top: 7px;
  right: 8px;
  transition: right 150ms ease-out, opacity 150ms ease-out;
}

#silktide-modal .switch__off {
  opacity: 1;
}

#silktide-modal .switch__on {
  opacity: 0;
}

/* Checked Switch Styles */
#silktide-modal .switch input:checked + .switch__pill {
  background: var(--primaryColor);
}

#silktide-modal .switch input:checked ~ .switch__dot {
  left: calc(100% - 32px);
}

#silktide-modal .switch input:checked ~ .switch__off {
  right: calc(100% - 32px);
  opacity: 0;
}

#silktide-modal .switch input:checked ~ .switch__on {
  right: calc(100% - 34px);
  opacity: 1;
}

/* Disabled Switch Styles */
#silktide-modal .switch input:disabled + .switch__pill {
  opacity: 0.65;
  cursor: not-allowed;
}

/* --------------------------------
  Modal - Footer 
-------------------------------- */
#silktide-modal footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  align-items: stretch;
}

/* Gruppierung der Buttons (Akzeptieren/Ablehnen) auf Desktop-Ansicht */
@media (min-width: 600px) {
  #silktide-modal footer {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; 
  }
  
  /* Buttons sollen wieder ihre normale Breite annehmen und links bleiben */
  #silktide-modal footer .st-button {
      flex-grow: 0;
      width: auto;
  }
}

/* Korrektur für den Credit-Link, um Überlappungen zu verhindern */
#silktide-modal footer a {
  margin-left: 0; 
  padding: 14px 0px;
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  /* Auf Desktop: Credit-Link ganz nach rechts verschieben */
  #silktide-modal footer a {
    margin-left: auto; 
    text-align: right;
  }
}


/* Cookie Icon */
#silktide-cookie-icon {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0px;
  border: none;
  background-color: var(--cookieIconColor);
  cursor: pointer;
  box-shadow: 0px 0px 6px 0px #0000001a;
  pointer-events: auto;
  animation: silktide-fadeIn 0.3s ease-in-out forwards;
}

#silktide-cookie-icon.bottomRight {
  left: auto;
  right: 10px;
}
#silktide-cookie-icon svg {
  fill: var(--cookieIconBackgroundColor);
  transform: scale(0.75);
}

/* --------------------------------
  Backdrop
-------------------------------- */
#silktide-backdrop {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--backdropBackgroundColor);
  backdrop-filter: blur(var(--backdropBackgroundBlur));
  pointer-events: all;
}

/* --------------------------------
  Animations
-------------------------------- */
@keyframes silktide-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes silktide-slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes silktide-slideInDown-center {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 20px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes silktide-slideInDown-bottomCenter {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes silktide-slideInUp-center {
  from {
    opacity: 0;
    transform: translate(0px, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}