* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #333;
}

main {
    flex: 1;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.4rem;
    vertical-align: middle;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-links li a:hover {
    background-color: #555;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30rem;
    padding: 0 2rem;
    background-color: #f0f0f0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

.about,
.services,
.contact {
    padding: 2rem;
    text-align: center;
    background-color: #fff;
}

.services {
    background-color: #f0f0f0;
}

.about h2,
.services h2,
.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-list li {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin: 1rem;
    max-width: 25rem;
    width: 100%;
}

.service-list h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact a {
    color: #333;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

section p {
    max-width: 50rem;
    margin: 0 auto;
    text-align: left;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 1rem;
    text-align: center;
}