@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #3B992C;
    color: white;
    margin-bottom: 0;
}

header .logo {
    font-size: 22px;
    font-weight: 600;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 400;
}

.hero {
    margin-top: 0;
    width: 100%;
    margin-bottom: 0;
    height: 70vh;     
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url("city1.avif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}
.hero-text h1 {
    margin-top: 0;
    color: black;
    font-size: 36px;
    margin: 10px 0;
}
.btn {
    display: inline-block;
    padding: 5px 10px;
    background: #3B992C;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
#mySearch {
    width: 100%;
    font-size: 18px;
    padding: 11px;
    border: 1px solid #ddd;
}
#myMenu {
    list-style-type: none;
    padding: 0;
}
#myMenu li a {
    padding: 12px;
    text-decoration: none;
    color: black;
    display: block;
}

#myMenu li a:hover {
    background-color: #7ad877;
}

.services {
    padding: 20px 10px;
    text-align: center;
}

.service-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card img {
    width: 200px;
    margin-bottom: 15px;
}

.news {
    padding: 40px 20px;
}

.news-card {
    background: white;
    padding: 20px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 15px;
    background: #3B992C;
    color: white;
    margin-top: 20px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .service-card {
        width: 90%;
    }
}
