.contact-us {
max-width: 600px;
margin: 0 auto;
}
.contact-us form {
display: flex;
flex-direction: column;
}
.contact-us label {
margin-top: 10px;
}
.contact-us input, .contact-us select, .contact-us textarea {
width: 100%;
padding: 8px;
margin-top: 5px;
}
.contact-us button {
margin-top: 20px;
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.contact-us button:hover {
background-color: #0056b3;
}