body {
    font-family: 'Inter', sans-serif;
    background-color: #292929;
    margin: 0;
    padding: 0;
    color: #fff;
}

.team-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;
}

.team-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member-info {
    max-width: 600px;
    text-align: center;
}

.team-member-info h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    
}

.team-member-info p {
    font-size: 1em;
    color: #ccc;
    line-height: 1.6;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}