<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sole Saver - Ultimate Shoe Deodorizer</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
            background-color: #f8f9fa;
        }
        .container {
            padding: 50px 20px;
        }
        .hero {
            background: #222;
            color: white;
            padding: 50px 20px;
        }
        .hero h1 {
            margin: 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 20px 10px;
            font-size: 18px;
            color: white;
            background: #007bff;
            text-decoration: none;
            border-radius: 5px;
        }
        .btn:hover {
            background: #0056b3;
        }
        .social-links a {
            display: inline-block;
            margin: 10px;
            font-size: 24px;
            color: #333;
            text-decoration: none;
        }
        .social-links a:hover {
            color: #007bff;
        }
    </style>
</head>
<body>
    <div class="hero">
        <h1>Sole Saver - The Ultimate Shoe Deodorizer</h1>
        <p>Eliminate odors, don’t just cover them up! Keep your shoes fresh and clean.</p>
        <a href="https://www.amazon.com/dp/YOUR_AMAZON_PRODUCT_LINK" class="btn">Buy on Amazon</a>
    </div>
    
    <div class="container">
        <h2>Why Choose Sole Saver?</h2>
        <p>✔ Instantly eliminates shoe odors<br>✔ Works on all types of shoes (especially slides!)<br>✔ Long-lasting freshness<br>✔ Easy spray application</p>
    </div>
    
    <div class="container social-links">
        <h2>Follow Us</h2>
        <a href="https://www.instagram.com/YOUR_INSTAGRAM" target="_blank">Instagram</a>
        <a href="https://www.facebook.com/YOUR_FACEBOOK" target="_blank">Facebook</a>
    </div>
</body>
</html>
