﻿        /* Base Styles & CSS Variables matching Wohlstandsbildner Theme */
        :root {
            --wb-navy: #1d3a5f;
            --wb-navy-dark: #142a46;
            --wb-gold: #cca43b;
            --wb-gold-dark: #b08c2f;
            --wb-sand: #f6f2ea;
            --wb-ink: #2c3e50;
            --wb-bg: #ffffff;
            --wb-line: #e2e8f0;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--wb-ink);
            background-color: var(--wb-bg);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            color: var(--wb-navy);
            line-height: 1.3;
        }
        
        h1, h2 {
            font-family: 'Georgia', serif;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Header / Hero Section */
        .hero {
            background-color: var(--wb-navy);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }
        .hero h1 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            border: none;
        }
        .hero .subtitle {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--wb-gold);
            margin-bottom: 2rem;
        }
        
        /* Bullet list */
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .benefits-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .benefits-list li::before {
            content: "âœ“";
            position: absolute;
            left: 0;
            color: var(--wb-gold);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Countdown & Promise */
        .info-section {
            text-align: center;
            margin: 3rem 0;
        }

        .promise-box {
            background-color: var(--wb-sand);
            border-left: 4px solid var(--wb-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: left;
            border-radius: 4px;
        }

        /* Embedded Form Styles from user */
        .wsb-form-container {
            max-width: 550px;
            margin: 3rem auto;
            padding: 2.5rem;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            font-family: "Mulish", -apple-system, BlinkMacSystemFont, sans-serif;
            border: 1px solid var(--wb-line);
        }
        .wsb-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
        }
        .ktv2-form-element {
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        .ktv2-form-element.full-width,
        .wsb-form-submit.full-width {
            grid-column: span 2;
        }
        .ktv2-form-element label {
            font-family: "Mulish-ExtraBold", "Mulish", sans-serif;
            font-weight: normal;
            font-style: normal;
            font-size: 0.9rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .ktv2-form-element input {
            font-family: "Mulish", sans-serif;
            padding: 0.85rem 1rem;
            font-size: 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 4px;
            background-color: #f8fafc;
            color: #334155;
            transition: all 0.2s ease-in-out;
            outline: none;
        }
        .ktv2-form-element input:focus {
            border-color: #cca43b;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(204, 164, 59, 0.1);
        }
        .wsb-form-submit input[type="submit"] {
            font-family: "Mulish-ExtraBold", "Mulish", sans-serif;
            font-weight: normal;
            font-style: normal;
            width: 100%;
            padding: 1rem;
            font-size: 1.05rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: #ffffff;
            background-color: #cca43b;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-top: 0.5rem;
        }
        .wsb-form-submit input[type="submit"]:hover {
            background-color: #b08c2f;
        }

        /* Content spacing */
        .content-section {
            margin: 4rem 0;
        }
        
        .podcast-intro {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Script block (Collapsible ideally, or just styled nicely) */
        .script-block {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--wb-line);
        }
        
        .transcript-details summary {
            cursor: pointer;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem;
            background-color: var(--wb-sand);
            border-radius: 4px;
            transition: background-color 0.2s ease;
        }
        .transcript-details summary:hover {
            background-color: #eee9dd;
        }
        .transcript-details summary h2 {
            margin: 0;
            border: none;
            font-size: 1.4rem;
        }
        .transcript-details summary::after {
            content: 'â–¼';
            color: var(--wb-gold);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        .transcript-details[open] summary::after {
            transform: rotate(180deg);
        }
        .transcript-content {
            padding: 2rem 1rem;
        }

        /* Countdown */
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 3rem auto;
            text-align: center;
            max-width: 600px;
        }
        .countdown-box {
            background-color: var(--wb-navy);
            color: white;
            padding: 1rem;
            border-radius: 8px;
            min-width: 80px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .countdown-number {
            display: block;
            font-size: 2.5rem;
            font-weight: 800;
            font-family: "Mulish-ExtraBold", "Mulish", sans-serif;
            color: var(--wb-gold);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .countdown-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Video Embed */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            border-radius: 8px;
            margin: 2rem 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        .video-container iframe,
        .video-container object,
        .video-container embed {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Table Styles (Incorporated from AVD-Uebersicht-Teil-1.html) */
        .wbavd{
            --wbavd-navy:#1d3a5f;
            --wbavd-navy-dark:#142a46;
            --wbavd-gold:#b98a2e;
            --wbavd-sand:#f6f2ea;
            --wbavd-line:#d8d2c4;
            --wbavd-ink:#22282f;
            --wbavd-green:#2e6b4f;
            --wbavd-red:#9c3a2e;
            color:var(--wbavd-ink);
            font-family:inherit;
            line-height:1.55;
            margin:0 auto;
        }
        .wbavd *{box-sizing:border-box;}
        .wbavd h2{
            font-family:Georgia,'Times New Roman',serif;
            font-size:1.55em; line-height:1.25;
            color:var(--wbavd-navy);
            border-bottom:3px solid var(--wbavd-gold);
            padding-bottom:.35em; margin:2.2em 0 .8em;
        }
        .wbavd h2:first-of-type{margin-top:.6em;}
        .wbavd h3{
            font-family:Georgia,'Times New Roman',serif;
            font-size:1.15em; color:var(--wbavd-navy); margin:1.6em 0 .5em;
        }
        .wbavd .wbavd-kicker{
            display:inline-block; background:var(--wbavd-navy); color:#fff;
            font-size:.78em; letter-spacing:.12em; text-transform:uppercase;
            padding:.35em .9em; border-radius:2px; margin-bottom:.6em;
        }
        .wbavd .wbavd-stand{font-size:.85em; color:#5a5f66; margin:.2em 0 1.4em;}
        .wbavd .wbavd-tablewrap{overflow-x:auto; margin:.6em 0 1.4em;}
        .wbavd table{width:100%; border-collapse:collapse; font-size:.95em; font-variant-numeric:tabular-nums;}
        .wbavd caption{caption-side:top; text-align:left; font-weight:700; color:var(--wbavd-navy); padding:.2em 0 .5em; font-size:1.02em;}
        .wbavd th{background:var(--wbavd-navy); color:#fff; text-align:left; padding:.6em .8em; font-weight:600; vertical-align:top;}
        .wbavd td{padding:.55em .8em; border-bottom:1px solid var(--wbavd-line); vertical-align:top;}
        .wbavd tbody tr:nth-child(even) td{background:var(--wbavd-sand);}
        .wbavd td:first-child{font-weight:600; white-space:normal; min-width:11em;}
        .wbavd .wbavd-num{white-space:nowrap; font-weight:700; color:var(--wbavd-navy);}
        .wbavd .wbavd-ja{color:var(--wbavd-green); font-weight:700;}
        .wbavd .wbavd-nein{color:var(--wbavd-red); font-weight:700;}
        .wbavd .wbavd-box{background:var(--wbavd-sand); border-left:4px solid var(--wbavd-gold); padding:.9em 1.1em; margin:1.2em 0; font-size:.95em;}
        .wbavd .wbavd-box strong{color:var(--wbavd-navy);}
        .wbavd .wbavd-warn{background:#faf1ee; border-left:4px solid var(--wbavd-red);}
        .wbavd .wbavd-cols{display:flex; gap:1.2em; flex-wrap:wrap; margin:.6em 0 1.4em;}
        .wbavd .wbavd-col{flex:1 1 260px; border:1px solid var(--wbavd-line); padding:1em 1.1em;}
        .wbavd .wbavd-col h4{margin:.1em 0 .5em; font-size:1em; font-family:Georgia,'Times New Roman',serif;}
        .wbavd .wbavd-col ul{margin:.2em 0 .2em 1.1em; padding:0;}
        .wbavd .wbavd-col li{margin:.25em 0;}
        .wbavd .wbavd-col--ja{border-top:4px solid var(--wbavd-green);}
        .wbavd .wbavd-col--nein{border-top:4px solid var(--wbavd-red);}
        .wbavd .wbavd-fussnote{font-size:.82em; color:#5a5f66; margin:.4em 0 1.2em;}
        .wbavd .wbavd-quellen{font-size:.88em;}
        .wbavd .wbavd-quellen a{color:var(--wbavd-navy);}
        .wbavd .wbavd-cta{background:var(--wbavd-navy); color:#fff; padding:1.3em 1.4em; margin:2em 0 .5em; text-align:center;}
        .wbavd .wbavd-cta a{display:inline-block; background:var(--wbavd-gold); color:#fff; text-decoration:none; font-weight:700; padding:.65em 1.5em; margin-top:.7em; border-radius:2px;}
        .wbavd .wbavd-cta a:hover{background:#a1771f;}
        
        @media (max-width: 480px) {
            .wsb-form-grid { grid-template-columns: 1fr; }
            .ktv2-form-element.full-width, .wsb-form-submit.full-width { grid-column: span 1; }
            .wsb-form-container { padding: 1.5rem; }
            .hero { padding: 3rem 1rem; }
        }
/* =========================================
   Hero Bereich (Hintergrundbild + Text)
   ========================================= */
.hero-section {
    margin-top: 125px;
    background-image: url('https://www.wohlstandsbildner.de/wp-content/uploads/2026/07/Altersvorsorgedepot-der-Wohlstandsbildner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 5% 180px 5%; 
    position: relative;
    color: #ffffff;
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: bold;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* =========================================
   Grid Layout für die 4 überlappenden Karten
   ========================================= */
.features-container {
    max-width: 1200px;
    margin: -100px auto 100px auto; 
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
}

.feature-card {
    background-color: #ffffff;
    color: #0b3b5e; 
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px; 
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card p {
    font-weight: bold;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .features-container {
        margin-top: -60px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr; 
    }
    .hero-section {
    margin-top: 125px;
        padding-top: 80px;
        padding-bottom: 120px;
    }
}

/* =========================================
   Flatsome Custom Header CSS
   ========================================= */
.header { width: 100%; position: fixed; top: 0; z-index: 1000; box-shadow: 0 1px 3px rgba(0,0,0,0.1); background: #fff; }
.header-wrapper { display: flex; flex-direction: column; }
.header-top { background: #013b4c; color: #fff; font-size: 0.85rem; padding: 5px 0; }
.header-top p { margin: 0; display: flex; align-items: center; }
.header-top a { color: #fff; text-decoration: none; }
.header-main { background: #fff; height: 90px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; width: 100%; }
.flex-row { display: flex; align-items: center; justify-content: space-between; height: 100%; width: 100%; }
.flex-col { display: flex; align-items: center; }
.flex-left { justify-content: flex-start; }
.flex-center { justify-content: center; flex-grow: 1; text-align: center; }
.flex-right { justify-content: flex-end; }
.flex-grow { flex-grow: 1; }

.nav { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 20px; }
.nav > li { position: relative; }
.nav-top-link { text-decoration: none; color: #333; font-weight: 500; font-size: 0.95rem; padding: 15px 0; display: block; }
.header-top .nav-top-link { color: #fff; font-weight: normal; font-size: 0.85rem; }
.nav-top-link:hover { color: var(--wb-gold); }

.has-dropdown:hover .sub-menu { display: block; }
.sub-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; min-width: 280px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); padding: 10px 0; margin: 0; list-style: none; z-index: 99; border-top: 3px solid #013b4c; text-align: left; }
.sub-menu li a { display: block; padding: 10px 20px; color: #555; text-decoration: none; font-size: 0.9rem; font-weight: 600; border-bottom: 1px solid #f5f5f5; transition: background 0.2s; }
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover { color: #ffffff; background: #f9f9f9; }
.nav-dropdown-col > a { color: #013b4c !important; }
.nav-dropdown-col .sub-menu { display: block !important; position: static !important; box-shadow: none !important; border: none !important; padding: 0 0 10px 15px !important; }

.icon-angle-down::after { content: " ▼"; font-size: 0.8em; opacity: 0.5; }
.icon-menu::before { content: "☰"; font-size: 1.5rem; font-style: normal; color: #ffffff; }

.header-logo { max-height: 40px; width: auto; transition: max-height 0.3s; }
.header-logo-dark { display: none; }

@media (max-width: 849px) {
    .hide-for-medium { display: none !important; }
    .header-main { height: 70px; }
    .header-logo { max-height: 40px; }
    .header-top .nav { flex-wrap: wrap; justify-content: center; gap: 10px; padding: 5px 0; }
}
@media (min-width: 850px) {
    .show-for-medium { display: none !important; }
}
#main-menu { display: none; }

/* Custom Footer CSS for Wohlstandsbildner */
.footer-wrapper {
    width: 100%;
    background: #013b4c;
    color: rgba(255,255,255,0.7);
    padding: 40px 15px 20px 15px;
    font-size: 0.85rem;
    margin-top: 60px;
}
.footer-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}
.footer-wrapper .col {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}
.footer-header {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.footer-wrapper p, .footer-wrapper span {
    color: #fff !important;
}
.footer-link, .footer-link-klein {
    color: #fff !important;
    text-decoration: none;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
}
.footer-link:hover, .footer-link-klein:hover {
    color: var(--wb-gold) !important;
}
.footer-social-media {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}
.footer-social-media img {
    width: 30px;
    height: 30px;
}
.absolute-footer {
    background: #002a36;
    color: #aaa;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}


/* General Headings Color */
h1, h2, h3, h4, h5, h6 { color: #ffffff; }
.hero-title { color: #ffffff !important; }

/* Remove white strip: change margin to padding in hero */
.hero-section {
    padding-top: 180px; /* enough space for fixed header */
    padding-bottom: 200px;
    margin-top: 0;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.hero-content {
    max-width: 650px;
    margin-left: 0;
    text-align: left;
}

/* Modernize Cards */
.feature-card {
    background-color: #ffffff;
    color: #0b3b5e; 
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(1, 59, 76, 0.08); 
    border-radius: 12px;
    border: 1px solid rgba(1, 59, 76, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(1, 59, 76, 0.12); 
}
.feature-icon {
    margin-bottom: 25px;
    color: #ffb413; /* Wobi Gold */
    background: rgba(255, 180, 19, 0.1);
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form inputs & Buttons */
.wsb-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: 'Mulish', sans-serif;
}
.wsb-input:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(1, 59, 76, 0.1);
    outline: none;
}
.wsb-button {
    background: #d49a11;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.2s;
    font-family: 'Mulish', sans-serif;
    box-shadow: 0 4px 10px rgba(212, 154, 17, 0.3);
}
.wsb-button:hover {
    box-shadow: 0 6px 15px rgba(212, 154, 17, 0.4);
    transform: translateY(-2px);
}
.wsb-button:active {
    transform: translateY(0);
}

.promise-box {
    background: rgba(1, 59, 76, 0.05);
    border-left: 4px solid #ffb413;
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
}

/* Footer Background Color */
.wobi-footer {
    width: 100%;
    background: #013b4c !important;
    color: rgba(255,255,255,0.8);
    padding: 40px 15px 30px 15px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 60px;
}
.wobi-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.2s;
}
.wobi-footer a:hover {
    color: #ffb413;
}

/* CSS to ensure tables look clean */
.wobi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95em;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.wobi-table thead tr {
    background-color: #ffffff;
    color: #ffffff;
    text-align: left;
}
.wobi-table th, .wobi-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}
.wobi-table tbody tr {
    border-bottom: 1px solid #dddddd;
}
.wobi-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}
.wobi-table tbody tr:last-of-type {
    border-bottom: 2px solid #013b4c;
}

/* Make Cards Smaller */
.feature-card {
    background-color: #ffffff;
    color: #0b3b5e; 
    padding: 20px 15px; 
    text-align: center;
    box-shadow: 0 8px 30px rgba(1, 59, 76, 0.08); 
    border-radius: 12px;
    border: 1px solid rgba(1, 59, 76, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 150px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(1, 59, 76, 0.12); 
}
.feature-icon {
    margin-bottom: 15px; 
    background: transparent; 
    padding: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make countdown smaller */
.countdown-box {
    padding: 15px !important;
}

/* Fixed positioning fix */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
