.contact-section{
    display: flex;
    flex-direction: column;
    margin: 0 10rem;
}

.header{
    margin-top: 6rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    height: 10%;
}

.header h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.header p {
    font-size: 1.05rem;
    line-height: 1.75rem;
}

.contact-information{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding-top: 2rem;
    height: 80%;
    justify-content: space-between;
}

.contact-info{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact-info h3{
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.contact-info p{
    text-decoration-line: underline;
    color: black;
}

.contact-info a{
    color: black;
    text-decoration: underline;
}

.contact-info a:hover{
    color: green;
}

.contact-additional-information{
    margin-top: 2rem;
    display: flex;
    height: 50%;
}

.image-frame{
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
    width: 50vw;
}

.image-frame iframe{
    border-radius: 0.5rem;
}

.contact-footer{
    height: 10%;
    margin: 0 auto;
    display: flex;
}

.contact-footer h3{
    text-align: center;
    align-content: flex-end;
}

@media (max-width: 768px) {
    .contact-section{
        margin: 0 2rem;
        padding-top: 0;
    }
    .contact-information{
        flex-wrap: wrap;
    }
    .contact-info{
        padding: 0.5rem 0;
    }
    .contact-info h3{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .header{
        margin-top: 3rem;
        height: 8%;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .contact-additional-information{
        flex-direction: column;
        margin-top: 1rem;
        align-items: center;
        height: 65%;
    }
    .image-frame{
        margin-top: 2rem;
        width: 100vw;
        height: 30%;
    }
    .contact-footer{
        height: 5%;
        margin-top: 3rem;
        padding-bottom: 1rem;
    }
    .header h1 {
        font-size: 2rem;
        line-height: 2.3rem;
    }
    .header p {
        font-size: 1.00rem;
        line-height: 1.75rem;
    }
}