.about-header {
    text-align: center;
    margin-bottom: 4rem;
}
.about-header h2 {
    font-size: 2.5rem;
}
.about-header p {
    font-size: 1.1rem;
    color: var(--light-grey);
    max-width: 600px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--medium-grey);
    border-radius: 10px;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    color: var(--white-text);
    font-size: 1.5rem;
}

.team-member h4 {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Mobile Responsive Styles for About Page */
@media (max-width: 800px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}