body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff; /* White background */
}

header {
    background-color: #000; /* Black background */
    color: white; /* White text */
    padding: 1em;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: white; /* White links */
    text-decoration: none;
}

main {
    padding: 2em;
    background-color: #f9f9f9; /* Light gray background for main content */
}

h1, h2 {
    color: #000; /* Black text for headings */
}

.cta-button {
    background-color: #000; /* Black button */
    color: white; /* White text on the button */
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 5px;
}

form label {
    display: block;
    margin-top: 1em;
    color: #333; /* Dark gray text for labels */
}

form input, form textarea {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.5em;
    background-color: #fff; /* White background for inputs */
    border: 1px solid #ccc; /* Light gray border for inputs */
    color: #333; /* Dark text inside input fields */
}

form input:focus, form textarea:focus {
    border-color: #000; /* Black border when input is focused */
    outline: none; /* Remove default focus outline */
}

button {
    background-color: #000; /* Black background for buttons */
    color: white; /* White text */
    padding: 0.5em 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #444; /* Slightly lighter black on hover */
}

#responseMessage {
    margin-top: 1em;
    padding: 1em;
    background-color: #f2f2f2; /* Light gray background for response */
    color: #333; /* Dark text for response */
    border-radius: 5px;
}

/* Image styling for header */
.header-image {
    width: 100%; /* Make the image fill the width of the container */
    max-width: 800px; /* Set a max width so it's not too large */
    margin: 20px 0; /* Add some spacing above and below the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
}
