body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

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

header h1 {
    margin: 0;
}

header nav ul {
    padding: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: url('building.jpg') no-repeat center center/cover;
    height: 400px;
    color: #fff;
    text-align: center;
    padding-top: 150px;
}

.about, .services, .contact {
    padding: 50px 0;
    text-align: center;
}

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

.service-item {
    width: 30%;
    background: #f4f4f4;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    font-size: 0.7em; /* Smaller font size for the footer */
}

footer a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .service-list {
        flex-direction: column;
    }

    .service-item {
        width: 100%;
    }
}

