
.team {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.member-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #f5f7fa;
    transition: transform 0.3s;
}

.member-img:hover {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #2c3e50;
    font-weight: 600;
}

.team-member p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    list-style: none;
}

.social-links li {
    margin: 0 10px;
}

.social-links a {
    color: #3498db;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #2980b9;
}
