body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background: url(banner.jpg) no-repeat center;
    background-size: cover;
    height: 150px;
    padding: 1em 0;
}
nav {
    display: flex;
    justify-content: center;
    background-color: #333;
}
nav a {
    color: white;
    padding: 1em;
    text-decoration: none;
    text-transform: uppercase;
}
@media (max-width: 700px) { 
    nav {
        display: grid;
        justify-content: center;
    }
    nav a {
        padding: 0em;
        text-align: center;
    }
}
nav a:hover {
    background-color: #ddd;
    color: black;
}
.container {
    padding: 2em;
    max-width: 1200px;
    margin: auto;
}
.services, .contact {
    background-color: white;
    padding: 2em;
    margin-bottom: 2em;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
p span {
    display: block;
	padding-bottom: 5px;
}

ul li {
	padding-bottom: 3px;
}
p a:link {
    color: tomato;
    background-color: transparent;
    text-decoration: none;
}

p a:visited {
    color: blue;
    background-color: transparent;
    text-decoration: none;
}

p a:hover {
    color: #1E90FF;
    background-color: transparent;
    text-decoration: underline;
}

p a:active {
    color: #8A2BE2;
    background-color: transparent;
    text-decoration: underline;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

