Contact Us

<!-- Contact Us Form -->
<div style="max-width: 600px; margin: 40px auto; font-family: Arial, sans-serif; padding: 20px; border: 1px solid #ddd; border-radius: 8px;">
  <h2 style="text-align: center; margin-bottom: 20px;">Contact Us</h2>
  <form action="mailto:your-email@example.com" method="POST" enctype="text/plain">
    
    <label for="name" style="font-weight: bold;">Name:</label><br>
    <input type="text" id="name" name="name" required style="width: 100%; padding: 10px; margin-bottom: 15px; border-radius: 4px; border: 1px solid #ccc;"><br>

    <label for="email" style="font-weight: bold;">Email:</label><br>
    <input type="email" id="email" name="email" required style="width: 100%; padding: 10px; margin-bottom: 15px; border-radius: 4px; border: 1px solid #ccc;"><br>

    <label for="message" style="font-weight: bold;">Message:</label><br>
    <textarea id="message" name="message" rows="5" required style="width: 100%; padding: 10px; margin-bottom: 15px; border-radius: 4px; border: 1px solid #ccc;"></textarea><br>

    <button type="submit" style="width: 100%; padding: 12px; background-color: #1d72b8; color: white; border: none; border-radius: 4px; font-size: 16px;">Send Message</button>
  </form>
</div>