body {
    font-family: Arial, sans-serif;
    background-color: #000000f2;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    background-color: #333;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

nav ul li a {
    color: #f4f4f4;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #6cc816;
    color: #111010;
}

.coordinators {
    padding: 40px;
    text-align: center;
    background-color: #f9f9f9;
}

.coordinators h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.coordinator-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
}

.coordinator-table td {
    padding: 15px;
    vertical-align: top;
}

.coordinator {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 180px;
}

.coordinator img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.coordinator h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.coordinator p {
    font-size: 0.9rem;
    color: #555;
}

.coordinator-table td:hover {
    background-color: #4eb4c2;
    cursor: pointer;
}

footer {
    margin-top: 20px;
}

footer p {
    font-size: 1rem;
    color: #333;
}

footer a {
    color: #4eb4c2;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
footer p:last-of-type {
    font-weight: bold;
    font-size: 1rem;
    color: #4eb4c2;
    margin-top: 10px;
}
/* Mobile styling */
@media (max-width: 768px) {
    .coordinators {
        padding: 20px;
    }

    .coordinator-table {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .coordinator-table td {
        width: 100%;
        padding: 10px 0;
    }

    .coordinator {
        width: 90%;
        max-width: 300px;
        margin-bottom: 20px;
    }

    .coordinators h3 {
        font-size: 1.5rem;
    }

    .coordinator h4 {
        font-size: 1rem;
    }

    .coordinator p {
        font-size: 0.85rem;
    }

    footer p {
        font-size: 0.9rem;
    }

    .google-map-image {
        width: 90%;
        max-width: 400px;
        margin: 10px auto;
    }
}
body, ul, li, a {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}

/* Fixed Navigation Styling */
.navbar {
    background-color: #333;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.navbar ul li a {
    color: #f4f4f4;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.navbar ul li a:hover {
    background-color: #6cc816;
    color: #111010;
}

/* Menu Toggle Button (Only visible on mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #f4f4f4;
    padding: 10px;
}

/* Mobile View Styles */
@media (max-width: 768px) {
    .navbar ul {
        display: none; /* Hide menu by default on mobile */
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px; /* Position below the navbar */
        left: 0;
        right: 0;
        padding: 10px 0;
        z-index: 9;
    }

    .navbar ul.open {
        display: flex; /* Show menu when toggled */
    }

    .navbar ul li a {
        padding: 10px 20px;
        text-align: center;
        width: 100%;
    }

    .menu-toggle {
        display: block; /* Show toggle button on mobile */
    }
}


