/* styles_team.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* Adjust based on header height */
}

.team-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.team-member {
    display: inline-block;
    margin: 20px;
    padding: 20px;
    text-align: center;
}

.team-member img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}
