.team {
    padding: 60px 20px;
    background-color: #1f1f3d;
    color: white;
    text-align: center;
}

.team .container {
    max-width: 1200px;
    margin: 0 auto;
}

.team h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background-color: #2a2a40;
    border-radius: 16px;
    padding: 20px;
    width: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-member .role {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 10px;
}

.team-member .bio {
    font-size: 0.95rem;
    color: #ccc;
}
