.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 250px;
    height: 310px;
    object-fit: cover;
    border-radius: 8px;
}

.team-card p {
    text-align: left;
}

.team-card h2 {
    text-align: center;
}

.team-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #f3f4f6;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3f7f86;
}

.service-card h3 {
    margin-top: 0;
}

.page-logo {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.md-header__button.md-logo {
    background: #fafafa;
    border-radius: 6px;
    padding: 0px 0px;
}