/* Our Team Section */
.our-team {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between columns */
    flex-wrap: wrap; /* Wrap columns on small screens */
}

.team-member {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 300px; /* Optional: Limit the width of each column */
    flex: 1; /* Ensure columns take equal space */
    margin: 10px; /* Space around columns */
}

.team-member img {
    width: 100%;
    border-radius: 50%; /* Circular image */
    height: auto;
    max-width: 150px; /* Optional: Limit image size */
    margin-bottom: 15px;
}

.team-member h3 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: #333;
}

.team-member p {
    margin: 5px 0;
    color: #666;
}