:root {
    --background-color: #F2F2F2;
    --primary-color: #007acc;
    --accent-color: #D9D9D9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color);
}

header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.team-section h1 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.team-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.member-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-card h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-card p {
    color: #666;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-mission {
    background-color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-top: 4rem;
}

.team-mission h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-mission p {
    font-size: 1.1rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

footer {
    background-color: var(--accent-color);
    text-align: center;
    padding: 1rem;
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .team-members {
        grid-template-columns: 1fr;
    }

    .team-mission {
        padding: 2rem;
    }

    .team-section h1 {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo img {
        height: 40px;
    }
} 