.leadership {
	color: #1B5672;
}
.team-section {
    display: flex;           /* Places team members side by side */
    gap: 20px;              /* Space between team members */
    padding: 0 20px;        /* Left and right padding */
	justify-content: space-evenly;
	color: #1B5672;
}

.team-member {
    display: flex;           /* Stacks image and text vertically within each member */
    flex-direction: column;  /* Image above, text below */
    align-items: center;     /* Centers content horizontally */
    text-align: center;      /* Centers the description text */
}

.team-member img {
    border-radius: 15px;     /* Rounded corners on images */
    width: 200px;            /* Fixed width - adjust as needed */
    height: auto;            /* Maintains aspect ratio */
	margin: 10px
}


.team-member p {
    margin: 10px 0 0;        /* Adds space above description, removes other margins */
	color: #1B5672;
}

.team-member h2, h3 {
	margin: 5px;
}

