body
{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
}

/* 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;
}