<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Lose 10kg in 30 Days - Ebook</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
        }
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
            text-align: center;
        }
        .hero {
            background-image: url('your-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 20px;
        }
        .hero h1 {
            font-size: 48px;
            margin: 0;
        }
        .hero p {
            font-size: 18px;
            margin-top: 10px;
        }
        .cta-button {
            background-color: #ff6600;
            color: white;
            padding: 15px 30px;
            font-size: 20px;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            border-radius: 5px;
        }
        .benefits, .testimonials, .offer {
            padding: 50px 20px;
            background-color: white;
            margin: 20px 0;
        }
        .footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
        }
    </style>
</head>
<body>
    <div class="hero">
        <h1>Lose 10kg in 30 Days</h1>
        <p>Losing weight may seem like an impossible challenge, but with the right strategies, it's entirely possible to shed up to 10kg in 30 days in a healthy and sustainable way.</p>
        <a href="https://bit.ly/3XHYJ4e" class="cta-button">Get the Ebook Now</a>
    </div>
    <div class="container benefits">
        <h2>What You'll Learn</h2>
        <p>Effective weight loss strategies, meal plans, and workout routines.</p>
    </div>
    <div class="container testimonials">
        <h2>Success Stories</h2>
        <p>See how others have transformed their lives with this ebook.</p>
    </div>
    <div class="container offer" id="purchase">
        <h2>Special Offer</h2>
        <p>Get this life-changing ebook today at a discounted price!</p>
        <a href="https://bit.ly/3XHYJ4e" class="cta-button">Buy Now</a>
    </div>
    <div class="footer">
        <p>&copy; 2025 Lose 10kg in 30 Days. All rights reserved.</p>
    </div>
</body>
</html>