<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Online Erste-Hilfe-Kurs · Lernakademie Plus</title>
    <!-- Police professionnelle -->
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f6f9fc;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 2rem 1.5rem;
            line-height: 1.5;
            color: #1a2e3b;
        }

        .card {
            max-width: 680px;
            width: 100%;
            background: white;
            border-radius: 32px;
            box-shadow: 0 20px 35px -8px rgba(0, 70, 100, 0.12);
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .header {
            background: linear-gradient(135deg, #005f8c 0%, #003f5f 100%);
            padding: 2rem 2.5rem 1.8rem;
            color: white;
        }

        .badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 0.35rem 0.9rem;
            border-radius: 40px;
            margin-bottom: 1rem;
            border: 1px solid rgba(255,255,255,0.25);
        }

        h1 {
            font-size: 1.95rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .subhead {
            font-size: 1.1rem;
            opacity: 0.92;
            font-weight: 400;
            max-width: 90%;
        }

        .content {
            padding: 2.2rem 2.5rem 2.5rem;
            background: white;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.8rem 1.5rem;
            margin-bottom: 2.2rem;
        }

        .usp-item {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
        }

        .usp-icon {
            background: #e6f0f5;
            border-radius: 14px;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: #005f8c;
            flex-shrink: 0;
        }

        .usp-text {
            font-weight: 500;
        }

        .usp-text strong {
            display: block;
            font-size: 1.05rem;
            font-weight: 700;
            color: #0a3140;
            margin-bottom: 0.2rem;
        }

        .usp-text span {
            font-size: 0.9rem;
            color: #446a7a;
            font-weight: 400;
        }

        .divider {
            height: 1px;
            background: linear-gradient(to right, #e2eef2, transparent);
            margin: 1rem 0 1.8rem;
        }

        .hinweis-box {
            background: #f2f8fa;
            border-left: 5px solid #ffb347;
            padding: 1.2rem 1.5rem;
            border-radius: 20px;
            margin-bottom: 2.2rem;
            display: flex;
            gap: 0.8rem;
            align-items: flex-start;
            font-size: 0.9rem;
            color: #1e4a5f;
        }

        .hinweis-icon {
            font-size: 1.3rem;
        }

        .cta-section {
            background: #ffffff;
            border: 1px solid #d9e7ed;
            border-radius: 28px;
            padding: 1.8rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.4rem;
        }

        .cta-text {
            display: flex;
            flex-direction: column;
        }

        .preis {
            font-size: 1.45rem;
            font-weight: 800;
            color: #003f5f;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .preis-klein {
            font-size: 0.8rem;
            font-weight: 500;
            color: #5f7e8c;
        }

        .btn {
            display: inline-block;
            background: #00a67e;
            color: white;
            font-weight: 600;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.3px;
            transition: all 0.2s;
            box-shadow: 0 8px 16px -6px rgba(0,166,126,0.25);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: #008f6b;
            transform: translateY(-2px);
            box-shadow: 0 14px 22px -8px rgba(0,166,126,0.35);
        }

        .footer {
            padding: 1.5rem 2.5rem 1.8rem;
            background: #f9fcfe;
            border-top: 1px solid #e7f0f3;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: #507481;
        }

        .footer a {
            color: #2c6975;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 1px dotted #b1cfda;
        }

        .footer a:hover {
            color: #003f5f;
        }

        .logo {
            font-weight: 700;
            font-size: 1rem;
            color: #005f8c;
            letter-spacing: -0.3px;
        }

        .logo span {
            background: #005f8c;
            color: white;
            padding: 0.15rem 0.5rem;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-left: 6px;
        }

        .unsubscribe {
            font-size: 0.75rem;
            color: #8099a2;
        }

        @media (max-width: 550px) {
            .header, .content, .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
            .usp-grid { grid-template-columns: 1fr; gap: 1rem; }
            .cta-section { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
            h1 { font-size: 1.7rem; }
        }
    </style>
</head>
<body>
    <div class="card">
        <!-- Kopfbereich mit Unternehmensfarben -->
        <div class="header">
            <span class="badge">🩺 100% online · DSGVO-konform</span>
            <h1>Erste-Hilfe-Kurs. Flexibel. Online.</h1>
            <div class="subhead">Lernen Sie die theoretischen Grundlagen – wann und wo Sie wollen. Ohne Anfahrt, ohne Stress.</div>
        </div>

        <!-- Hauptteil: Leistungen & Verkaufsargumente -->
        <div class="content">
            <div class="usp-grid">
                <div class="usp-item">
                    <div class="usp-icon">🌐</div>
                    <div class="usp-text">
                        <strong>100 % online</strong>
                        <span>rund um die Uhr verfügbar, von jedem Gerät</span>
                    </div>
                </div>
                <div class="usp-item">
                    <div class="usp-icon">⏳</div>
                    <div class="usp-text">
                        <strong>Kein Zeitdruck</strong>
                        <span>lernen Sie in Ihrem eigenen Tempo</span>
                    </div>
                </div>
                <div class="usp-item">
                    <div class="usp-icon">📘</div>
                    <div class="usp-text">
                        <strong>Einfach verständlich</strong>
                        <span>klar strukturierte Inhalte, keine Vorkenntnisse nötig</span>
                    </div>
                </div>
                <div class="usp-item">
                    <div class="usp-icon">📄</div>
                    <div class="usp-text">
                        <strong>Teilnahmebescheinigung</strong>
                        <span>sofort als PDF zum Download</span>
                    </div>
                </div>
            </div>

            <!-- Beschreibungstext – Emotion & Nutzen -->
            <p style="font-size: 1rem; margin-bottom: 1.6rem; color: #1f4a59; font-weight: 400; border-left: 4px solid #00a67e; padding-left: 1.2rem;">
                <strong style="font-weight: 700;">Schnell, unkompliziert, seriös.</strong> Ideal für alle, die sich fundiertes Erste-Hilfe-Wissen aneignen möchten – ohne feste Termine oder Anfahrtswege. 
                Starten Sie noch heute und machen Sie den ersten Schritt.
            </p>

            <!-- Hinweis zur Anerkennung (wichtig für rechtliche Transparenz) -->
            <div class="hinweis-box">
                <span class="hinweis-icon">📌</span>
                <div style="flex:1;">
                    <strong style="font-weight: 700; color: #194352;">Hinweis zur Anerkennung:</strong> Bitte prüfen Sie vorab, ob der reine Online-Kurs für Ihren gewünschten Zweck (z. B. Führerschein, Betrieb) anerkannt wird. Bei Fragen hilft unser Support.
                </div>
            </div>

            <!-- Call-to-Action: Jetzt Kurs starten, klare Wertangabe -->
            <div class="cta-section">
                <div class="cta-text">
                    <span style="font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #008bb0;">Sofortzugang</span>
                    <span class="preis">nur 37 €</span>
                    <span class="preis-klein">inkl. MwSt., Bescheinigung als PDF</span>
                </div>
                <a href="https://erste-hilfe-kurs-online.de/#aff=costo11" class="btn">
                    Jetzt Kurs starten → 
                </a>
            </div>
        </div>

        <!-- Footer mit Kontakt, Abmeldelink und rechtlichem Rahmen -->
        <div class="footer">
            <div class="logo">
                Lernakademie Plus <span>DE</span>
            </div>
            <div style="display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center;">
                <a href="https://www.lernakademie-plus.de" style="border-bottom: none;">www.lernakademie-plus.de</a>
                <a href="#">Kontakt</a>
                <span class="unsubscribe">
                    <a href="#" style="color: #6f929d;">E-Mail abbestellen</a>
                </span>
            </div>
        </div>
        <!-- zusätzliche unsichtbare Adresse für Transparenz (gemäß E-Mail-Kennzeichnung) -->
        <div style="padding: 0.2rem 2.5rem 1.2rem; background: #f9fcfe; font-size: 0.7rem; color: #6b8a96; border-top: 1px dashed #cee2e8;">
            Lernakademie Plus · Musterstraße 12 · 10115 Berlin · Deutschland
        </div>
    </div>

    <!-- Micro annotation – Vertrauenssignal -->
    <div style="display: none;">DSGVO-konforme Lernplattform – zertifizierte Erste-Hilfe-Inhalte</div>
</body>
</html>