/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: url('slum_pic.webp') no-repeat center center/cover;
    padding-top: 60px;
    color: #333;
}

/* Navbar */
.navbar {
    background-color:  #333;
    color: #fff;
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* About Us Section */
.about-us-container {
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-top: 80px; /* Adjust for fixed navbar */
}

.about-us {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    max-width: 800px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-us h1, .about-us h2 {
    color: #333;
    margin-bottom: 10px;
}

.about-us p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-member {
    margin: 20px 0;
}

.team-member h3 {
    font-size: 22px;
    color: #333;
}

.team-member p {
    font-size: 16px;
    color: #555;
}

/* Footer */
footer {
    background-color:  #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        display: none;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger {
        display: block;
        cursor: pointer;
    }

    .about-us {
        padding: 15px;
    }
}
