.team-section {
    background-color: #fff;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 25px;
    margin: 10px 0;
    color: #333;
}

.team-member p {
    font-size: 20px;
    color: #777;
}

.team-member .bio {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .team-container h1 {
        font-size: 25px;
        margin: 10px 0;
        color: #333;
    }
    .team-container p {
        font-size: 20px;
        margin: 10px 0;
        color: #333;
    }
    .team-member {
        width: 100%;
        max-width: 300px;
    }
    .team-member img {
        border-radius: 50%;
        width: 130px;
        height: 130px;
        object-fit: cover;
        margin-bottom: 20px;
    }
    .team-member h3 {
        font-size: 24px;
        margin: 10px 0;
        color: #333;
    }
    .team-member .bio {
        margin-top: 10px;
        font-size: 16px;
        color: #555;
    }
}