.contact-section {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 5vh;
}
.contact-section h2 {
    color: #315247;
}
.contact-section form {
    display: flex;
    flex-direction: column;
}
.contact-section label {
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-section input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #315247;
    border-radius: 5px;
}
.contact-section input[type="submit"] {
    background-color: #315247;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.contact-section .confirmation {
    margin-top: 20px;
    display: none;
    padding: 10px;
    background-color: #e0f7fa;
    border: 1px solid #b2ebf2;
    border-radius: 5px;
}
@media (min-width: 1100px){

    .contact-section{
        max-width: 80%;
    }

    .contact-section form{
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
    }
}