main {
    padding: 20px;
    min-height: calc(100vh - 10.5em);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sections {
    max-width: 1000px;
}

h1 {
    margin-top: 2em;
}

#contact-info, #form-section, #map {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    font: inherit;
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--dark-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: var(--blue);
}
