.team-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.team-section .section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.team-section .section-subtitle {
    font-size: 18px;
    color: #777;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    box-shadow: 0px 1px 2px 3px yellow;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%; /* Makes the image circular */
    border: 5px solid #eee;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.team-member h4 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

.team-member p {
    font-size: 16px;
    color: #666;
}
