.team-member {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* subtle shadow for depth */
}

.team-name {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.team-title {
    font-size: 16px;
    color: #555;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url("https://cdn-icons-png.flaticon.com/512/174/174857.png");
    /* Using a generic LinkedIn icon */
    background-size: cover;
    margin-top: 10px;
    cursor: pointer;
}

.container {
    padding-top: 30px;
    padding-bottom: 50px;
}

.team-member:hover {
    transform: translateY(-5px);
    /* subtle lift effect */
    cursor: pointer;
}