<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Casey B Marketing</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            padding: 20px;

        }

        .container {

            max-width: 600px;

            margin: 0 auto;

        }

        form {

            margin-top: 20px;

        }

        input, textarea {

            width: 100%;

            padding: 10px;

            margin-top: 5px;

        }

        button {

            padding: 10px 20px;

            background: #000;

            color: #fff;

            border: none;

            cursor: pointer;

        }

        footer {

            margin-top: 30px;

            font-size: 14px;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Casey B Marketing</h1>

        <p>Providing expert digital marketing services, specializing in paid ads, e-commerce growth, and performance marketing.</p>

        <p>Contact us: <a href="mailto:caseybmarketingservices@gmail.com">caseybmarketingservices@gmail.com</a></p>

        

        <h2>Contact Us</h2>

        <form action="mailto:caseybmarketingservices@gmail.com" method="post" enctype="text/plain">

            <input type="text" name="name" placeholder="Your Name" required><br>

            <input type="email" name="email" placeholder="Your Email" required><br>

            <textarea name="message" placeholder="Your Message" required></textarea><br>

            <button type="submit">Send</button>

        </form>

        

        <footer>

            <p><a href="terms.html">Terms & Conditions</a> | <a href="privacy.html">Privacy Policy</a></p>

        </footer>

    </div>

</body>

</html>