.service-section-10 {
    padding: var(--section-pad-y) 0;
    background-color: var(--white);
    text-align: center;
}

.service-section-10 h2 {
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 24px;
}

.service-section-10__content {
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 18px;
    line-height: 1.6;
}


.service-section-10__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-member {
    text-align: center;
}

.team-member__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
}

.team-member__name {
    font-size: 24px;
    margin: 0 0 8px;
}

.team-member__position {
    color: #666;
    margin: 0 0 16px;
}

.team-member__social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.team-member__social a {
    color: var(--heading-color);
    text-decoration: none;
}

@media (max-width: 991px) {
    .service-section-10__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-section-10__grid {
        grid-template-columns: 1fr;
    }
}
