<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Payment Confirmation</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            padding: 20px;
        }
        .container {
            max-width: 600px;
            margin: 0 auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        h2 {
            color: #333;
        }
        p {
            margin-bottom: 20px;
        }
        .payment-options {
            margin-bottom: 20px;
            padding: 10px;
            background-color: #f9f9f9;
            border-radius: 5px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h2>Payment Confirmation</h2>
        <p>We're writing to confirm the receipt of your payment. Your
prompt response is greatly appreciated.</p>
        <div class="payment-options">
            <p><strong>Payment Options:</strong> Annual Charge or Auto Pay.</p>
            <p>Please review your preferred payment method and ensure
that it aligns with your financial preferences.</p>
        </div>
        <p>Thank you for choosing our services. Should you have any
questions or require further assistance, please feel free to reach out
to us.</p>
    </div>
</body>
</html>