<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact Form</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333333;
            margin: 0;
            padding: 0;
        }
        .contact-form {
            width: 1200px;
            max-width: 100%;
            padding: 20px;
            margin: auto;
            background-color: #ffffff;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        h2 {
            color: #3498db;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 400;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            width: 100%;
            padding: 10px;
            border: 1px solid #cccccc;
            border-radius: 5px;
            font-size: 16px;
            color: #333333;
            background-color: #ffffff;
        }
        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus {
            border-color: #2980b9;
            outline: none;
        }
        .submit-button {
            background-color: #e74c3c;
            color: #ffffff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: #c0392b;
        }
    </style>
</head>
<body>

<div class="contact-form">
    <h2>Contact Info</h2>
    <form id="contactForm" onsubmit="return validateForm()">
        <div class="form-group">
            <label for="name">Name</label>
            <input type="text" id="name" name="name" required>
        </div>
        <div class="form-group">
            <label for="email">Email</label>
            <input type="email" id="email" name="email" required>
        </div>
        <div class="form-group">
            <label for="phone">Phone</label>
            <input type="tel" id="phone" name="phone" required>
        </div>
        <div class="form-group">
            <label for="company">Company</label>
            <input type="text" id="company" name="company" required>
        </div>
        <div class="form-group">
            <label for="job_title">Job Title</label>
            <input type="text" id="job_title" name="job_title" required>
        </div>
        <button type="submit" class="submit-button">Submit</button>
    </form>
</div>

<script>
    function validateForm() {
        const name = document.getElementById('name').value;
        const email = document.getElementById('email').value;
        const phone = document.getElementById('phone').value;
        const company = document.getElementById('company').value;
        const jobTitle = document.getElementById('job_title').value;

        if (!name || !email || !phone || !company || !jobTitle) {
            alert("Please fill out all fields.");
            return false;
        }

        const emailPattern = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
        if (!emailPattern.test(email)) {
            alert("Please enter a valid email address.");
            return false;
        }

        return true; // Form is valid
    }
</script>

</body>
</html>

Explanation:

  1. HTML Structure: The form is structured with a title and five input fields (name, email, phone, company, job title) along with a submit button.
  2. Styling: The CSS styles are applied according to your specifications, including colors, fonts, and layout.
  3. Validation: A simple JavaScript function checks that all fields are filled and that the email is in a valid format before submission.
  4. Responsiveness: The form is designed to be responsive, adjusting its width based on the screen size.

You can further customize the form as needed!