body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

img {
    width: 50%
    height: 50%
}

header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #0779e4 3px solid;
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header ul {
    padding: 0;
    list-style: none;
}

header ul li {
    display: inline;
    padding: 0 20px 0 20px;
}

header h1 {
    float: left;
    margin-top: 0;
}

header nav {
    float: right;
    margin-top: 10px;
}

section {
    padding: 20px 0;
}

#services .services-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#services .service-item {
    background: #fff;
    border: #ccc 1px solid;
    margin: 10px;
    padding: 20px;
    flex-basis: 45%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#services .service-item:hover {
    transform: scale(1.05);
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact form label {
    margin: 10px 0 5px 0;
}

#contact form input,
#contact form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact form button {
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}