body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
}

h1 {
    color: #333;
}

header {
    background-color: #2a2a2a;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background-color: #333;
    padding: 40px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem; /* Large font size for the title */
    margin-bottom: 20px;
}

.video-section {
    margin: 20px 0; 
}

.video-placeholder {
    width: 800px; /* Specific width for the video */
    height: 450px; /* Specific height for the video */
    margin: 0 auto; /* Center the video */
    background-color: #eee; /* Placeholder background */
}

.lead-capture-form {
    margin-top: 30px;
}

.lead-capture-form input,
.lead-capture-form button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box; 
}

.lead-capture-form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lead-capture-form button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #2a2a2a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
