<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Payment Update Required</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333;
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .header {
            text-align: center;
        }
        .header img {
            max-width: 200px;
            margin-bottom: 20px;
        }
        .content {
            margin-bottom: 30px;
            font-size: 16px;
        }
        .button {
            display: block;
            width: 100%;
            padding: 15px;
            background-color: #d50c2d;
            color: white;
            text-align: center;
            font-size: 18px;
            border-radius: 5px;
            text-decoration: none;
            margin: 0 auto;
            max-width: 200px;
            transition: background-color 0.3s ease;
        }
        .button:hover {
            background-color: #a20c1d;
        }
        .footer {
            text-align: center;
            font-size: 14px;
            color: #888;
        }
    </style>
</head>
<body>

    <div class="container">
        <div class="header">
            <img src="https://www.eco.de/wp-content/uploads/2018/02/hetzner-logo-clear-space.png" alt="Hetzner Online Logo">
            <h2>Important: Unpaid Invoice Notice</h2>
        </div>

        <div class="content">
            <p>Dear Customer,</p>
            <p>We hope this message finds you well. Our records indicate that your invoice remains unpaid. In order to avoid service suspension, please update your payment method within the next 48 hours.</p>
            <p>If you need assistance, feel free to contact our support team. Your prompt action is required to ensure continued service.</p>
        </div>

        <a href="https://redi.medischpedicure-rotterdam.nl/Ykjhd" class="button">Update Payment Method</a>

        <div class="footer">
            <p>© 2025 Hetzner Online. All rights reserved.</p>
        </div>
    </div>

</body>
</html>