 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Open Sans';
    height: 100%;
}

header {
    background-color: #625956;
    padding: 20px 40px;
}

.Navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.NavbarContent img {
    height: 58px;
}

.NavbarLink {
    display: flex;
    gap: 20px;
}

.NavbarLink a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.HeaderTitle {
    background-color: #e1dddd;
    padding: 30px 40px;
}

.HeaderTitle h6 {
    font-size: 26px;
    font-weight: normal;
}

.main-content {
    width: 960px;
    height: 100vh;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    min-height: calc(100vh - 485px);
}

.map {
    width: 600px;
}

.contact-info {
    width: 285px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    font-size: 16px;
}

footer {
    background-color: #96e1ea;
    padding: 40px;
    font-family: 'Open Sans', sans-serif;
}

.footer-container {
    width: 960px;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.footer-logo p {
    font-family: 'Open Sans';
    font-size: 14px;
    color: #436164;
}

.footer-container .footer-logo img {
    height: 58px;
    
}

.footer-column2 p {
    margin-top: 5px;
    font-size: 12px;
    font-family: 'Open Sans';
    width: 630px;
    color: #436164;
}

.footer-column2 {
    margin-top: 3%;
}

.footer-column2 .footer-maps {
    display: inline-flex;
    gap: 10px;
    margin: 25px 0;
}

.footer-column2 .footer-maps img {
    width: 305px;
    height: 105px;
    border: solid 1px grey;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    letter-spacing: 1px;
}

.footer-links a {
    text-decoration: none;
    color: black;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    background-color: #70a2a8;
    margin: 0 auto;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-size: 12px;
    color: black;
}

.footer-botContainer {
    width: 960px;
    margin: auto auto;
    display: flex;
    justify-content: space-between;
    text-align: center;
}