.services-block {
    padding: 0 0 22px;
}

.services-block__inner {
    padding: 28px 22px 24px;
    border-radius: 24px;
}

.services-block--blue .services-block__inner {
    background: #f1f7fc;
}

.services-block--olive .services-block__inner {
    background: #f7f8ef;
}

.services-block--purple .services-block__inner {
    background: #f6f3fb;
}

.services-block--peach .services-block__inner {
    background: #fff7f0;
}

.services-block h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.service-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    min-height: 205px;
    align-items: center;
    padding: 20px 18px;
    border: 1px solid #edf0f3;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(31, 37, 51, 0.04);
}

.service-card > img {
    width: 88px;
    height: 88px;
    object-fit: contain;
}

.service-card h3 {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 9px;
    font-size: 0.95rem;
}

.service-card h3 span {
    display: inline-grid;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--teal);
    font-size: 0.72rem;
}

.service-card:nth-child(3n+2) h3 span {
    background: var(--coral);
}

.service-card:nth-child(3n) h3 span {
    background: var(--olive);
}

.service-card p {
    margin: 0;
    color: #485264;
    font-size: 0.7rem;
    line-height: 1.5;
}
