body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #87CEEB, #ADD8E6);;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

header {
    background: #000;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo a {
    display: block;
}

.custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

nav ul.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

nav ul.menu li {
    position: relative;
}

nav ul.menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.about-us-section {
    padding: 120px 20px 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-us-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-us-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.team {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.member {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #87CEEB;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.member:hover img {
    transform: scale(1.1);
}

.member h3 {
    margin: 15px 0 5px;
    color: #333;
    font-size: 1.4rem;
}

.member .role {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.member .bio {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    nav {
        justify-content: flex-end;
    }

    .mobile-menu-toggle {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
    }

    nav ul.menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul.menu.is-active {
        display: flex;
    }

    nav ul.menu li {
        text-align: center;
        margin: 10px 0;
    }

    .team {
        gap: 20px;
    }

    .member {
        padding: 20px;
        width: 100%;
        min-width: auto;
    }
    
    .about-us-section {
        padding: 100px 15px 40px;
        overflow: hidden;
    }
}
