/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dadada; /* Light green background */
    color: #2d2d2d; /* Neutral dark text color */
}

/* Navigation Bar */
.navigation {
    background-color: #006400; /* Dark green color */
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu a:hover {
    background-color: #008f00; /* Bright green hover effect */
}

/* Logo Section */
.logo-container {
    text-align: center;
    margin: 50px 0;
}

.logo {
    max-width: 200px; /* Adjust logo size */
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #006400; /* Dark green */
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu li {
        margin: 10px 0;
    }
}
/* About Us Section */
.about-us {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #e8ffe8; /* Light green background for the section */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-us h1, .about-us h2 {
    color: #006400; /* Dark green */
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-us p {
    color: #333;
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.map-container {
    margin-top: 20px;
    border: 2px solid #006400;
    border-radius: 10px;
    overflow: hidden;
}
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

main {
    padding: 20px;
}

h2, h3 {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

thead th {
    background-color: #4CAF50;
    color: white;
    text-align: left;
    padding: 10px;
}

tbody td {
    padding: 10px;
    border: 1px solid #ddd;
}

/* Adjust for smaller screens */
@media screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }

    h2, h3 {
        font-size: 18px;
    }

    table {
        font-size: 12px;
    }

    thead th, tbody td {
        padding: 8px;
    }
}

/* Mobile-Specific Adjustments */
@media screen and (max-width: 400px) {
    h2, h3 {
        font-size: 16px;
    }

    table {
        font-size: 10px;
    }
}
