<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Coming Soon - Your New Website</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }
        .logo {
            margin-bottom: 30px;
        }
        .logo img {
            max-width: 200px;
        }
        h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #7f8c8d;
        }
        .email-form {
            margin: 40px 0;
        }
        .email-input {
            padding: 12px 15px;
            width: 60%;
            max-width: 300px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
        }
        .submit-btn {
            padding: 12px 20px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s;
        }
        .submit-btn:hover {
            background-color: #2980b9;
        }
        .social-links {
            margin-top: 40px;
        }
        .social-links a {
            display: inline-block;
            margin: 0 10px;
            color: #3498db;
            font-size: 24px;
            text-decoration: none;
        }
        .footer {
            margin-top: 60px;
            font-size: 0.9rem;
            color: #95a5a6;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">
            <img src="/api/placeholder/200/100" alt="Your Logo">
        </div>
        
        <h1>We're Coming Soon</h1>
        <p>Our website is under construction. We're working hard to bring you something amazing.</p>
        
        <div class="email-form">
            <form action="#" method="POST">
                <input type="email" class="email-input" placeholder="Enter your email" required>
                <button type="submit" class="submit-btn">Notify Me</button>
            </form>
            <p>Be the first to know when we launch.</p>
        </div>
        
        <div class="social-links">
            <a href="#" aria-label="Facebook">F</a>
            <a href="#" aria-label="Twitter">T</a>
            <a href="#" aria-label="Instagram">I</a>
            <a href="#" aria-label="LinkedIn">L</a>
        </div>
        
        <div class="footer">
            <p>&copy; 2025 Your Company. All rights reserved.</p>
        </div>
    </div>
</body>
</html>