body {
    font-family: monospace, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 20px 0;
    background-color: #f0f0f0;
}

header .logo img {
    max-width: 200px;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.services {
    max-width: 800px;
}

.service-block {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    text-align: left; /* Added text-align: left */
}

.service-block h2 {
    margin-top: 0;
}

service-block ul {
    list-style-type: disc;
    padding-left: 20px;
}

.contact {
    text-align: center; /* keep contact info centered */
    margin-top: 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f0f0f0;
}