.contact-us {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 20px;
    max-width: 1800px;
    margin: auto; /* Center the contact section */
    margin-top: 100px;
}

.info {
    flex: 1; /* Takes up 50% of the space */
    margin-right: 20px; /* Adds space between info and form */
}

.form-container {
    flex: 1; /* Takes up 50% of the space */
    background-color: rgba(255, 255, 255, 0.8); /* Optional semi-transparent background for the form */
    padding: 20px; /* Padding for the form */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack form elements vertically */
}

.button-container {
    display: flex; /* Use flexbox */
    justify-content: center; /* Center the button */
    width: 100%; /* Ensure it uses full width of the form */
    margin-top: 20px; /* Space above the button */
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #333; /* Header color */
}

h5 {
    margin-bottom: 30px;
    margin-top: 50px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555; /* Text color */
}

.form-row {
    display: flex;
    justify-content: space-between; /* Space between first and last name inputs */
}

.form-group {
    flex: 1; /* Makes input boxes take equal width */
    margin-right: 10px; /* Space between input fields */
}

.form-group:last-child {
    margin-right: 0; /* No margin for the last element */
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block; /* Makes labels block level for better alignment */
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%; /* Full width for inputs */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners for inputs */
}

/* Add this in your existing styles for Number of Windows and Bristol Area input fields */
#num_windows {
    height: 50px !important; /* Set the desired height to both input fields */
    border-radius: 5px;
}

button {
    background-color: #333; /* Dark button background */
    color: white; /* White text */
    padding: 10px 20px; /* Button padding */
    border: none; /* No border */
    border-radius: 5px; /* Rounded button */
    cursor: pointer; /* Pointer on hover */
    font-size: 1em; /* Button font size */
}

button:hover {
    background-color: #555; /* Darker shade on hover */
}

@media (max-width: 768px) {
    .contact-us {
        flex-direction: column; /* Stack elements on small screens */
    }

    .info {
        margin-right: 0; /* Remove right margin on small screens */
        margin-bottom: 20px; /* Space between info and form */
    }

    .form-container {
        width: 100%;
        padding: 10px;
    }

    .form-row {
        flex-direction: column; /* Stack form fields vertically */
        align-items: stretch; /* Make form fields stretch across the full width */
    }

    .form-group {
        margin-right: 0; /* Remove margin-right for mobile */
        margin-bottom: 15px; /* Add spacing between form fields */
    }

    h1 {
        font-size: 2em;
        margin-bottom: 50px;
        color: #333; /* Header color */
    }
    
    p {
        font-size: 1em;
        line-height: 1.4;
        color: #555; /* Text color */
    }

    label {
        font-size: 0.8em;
    }
}
