html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

header, footer {
    background-color: #f8f8f8;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

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

main {
    flex: 1;
}

.hero {
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #666;
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.service-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
    background-color: white; /* Ensure service items have a white background */
}

.about {
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
}

.employees {
    padding: 20px;
    text-align: center;
}

.employee {
    display: inline-block;
    margin: 20px;
    text-align: center;
    background-color: white; /* Ensure employee section has a white background */
    padding: 20px;
    border-radius: 5px;
}

.employee img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

.social-media {
    margin: 10px 0;
}

.social-media img {
    height: 30px;
}

/* Media Queries for Responsive Design */

@media (min-width: 600px) {
    .service-item {
        width: 45%;
    }
}

@media (min-width: 900px) {
    .service-item {
        width: 30%;
    }

    nav ul li {
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5em;
    }

    .hero p {
        font-size: 0.9em;
    }

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