.approach {
    background: #f7f8fb;
    padding-top: 35px;
}

.section-headline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.approach .section-subtitle {
    font-style: italic;
    font-size: 19px;
    font-weight: 700;
    color: #228bd9;
    white-space: nowrap;
}

.approach .section-title {
    color: #228bd9;
}

.section-headline::after {
    content: "";
    height: 2px;
    flex: 1;
    background: #d9dfea;
}

.approach .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.approach .card {
    background: #f2f4f9;
    border: 1px solid #e3e7ef;
    border-radius: 6px;
    padding: 18px 14px;
    text-align: center;
}

.approach-icon {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 6px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.approach .card h3 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #153f86;
}

.approach .card p {
    font-size: 14px;
}

@media (max-width: 991px) {
    .section-headline {
        flex-wrap: wrap;
    }

    .approach .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .approach .grid {
        grid-template-columns: 1fr;
    }

    .approach .section-subtitle {
        white-space: normal;
    }
}
