* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body{
    background-color:#f3f4f6;
    color:white;
    align-items:center;
    /* line-height: 1.6;
    display: flex;
    flex-direction: column; */
}
header{
    background-color:#199543;
    color:white;
    text-align:center;
    width: 90%;
    max-width: 1000px;
    padding: 1rem;
    margin: 1rem auto;
    border-radius: 8px;
}
header h2 {
    font-size: 2rem;
}

header nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.3rem;
}

header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
header nav a:hover {
    text-decoration: None;
    background-color: #8c3f26;
}
section {
    width: 90%;
    max-width: 1000px;
    padding: 1.5rem;
    margin: 1rem auto;
    background-color: #fff;
    color:black;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
#search h2 {
    margin-bottom: 1rem;
}

#search input {
    padding: 0.5rem;
    width: calc(100% - 120px);
    max-width: 500px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#search button {
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: #199543;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}
#search button:hover{
    background-color:gold;
    color:black;
}
#map {
    height: 400px;
    background-color: #e0e0e0; /* Placeholder background */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}
footer {
    background-color: #199543;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    position: fixed;
    bottom: 0;
}

footer p {
    font-size: 0.9rem;
}
@media (max-width: 480px) {
    body {
        font-size: 14px;
        padding: 10px;
    }
    .container {
        width: 95%;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    text-align: center;
}

.whatsapp-float img {
    width: 50px; /* Adjust size as needed */
    height: 50px;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    }
    
