body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    /* Added to support full height white area */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
}

.logo {
    height: 40px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* BANNER */
.banner img {
    width: 100%;
}

/* ABOUT */
.about {
    text-align: center;
    padding: 60px 200px;
}

/* SERVICES */
.services {
    text-align: center;
    padding: 60px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.service {
    width: 300px;
}

.service img {
    width: 100%;
}

/* LOCATIONS */
.locations {
    text-align: center;
    padding: 60px;
}

.location-container {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.location img {
    width: 350px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    background: #f2f2f2;
}

.footer-logo {
    height: 30px;
}

/* --- CONTACT PAGE SPECIFICATIONS --- */

.contact-main {
    flex: 1; /* Makes the white area fill the browser window height */
    padding: 60px 0;
    background-color: white;
}

.contact-container {
    width: 960px;   /* Fixed width requirement */
    margin: 0 auto; /* Centered on page */
}

.contact-img {
    float: left;    /* Floated */
    width: 600px;   /* Fixed width requirement */
    height: auto;
}

.contact-details {
    float: right;   /* Floated */
    width: 285px;   /* Fixed width requirement */
    line-height: 1.8;
}