body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#our-team {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 50%;
    border-radius: 20%;
    margin-bottom: 15px;
}

h3 {
    margin: 10px 0;
    font-size: 1.5em;
}

p {
    color: #666;
}