.problems {
    background: #f7f8fb;
}

.problems .section-title,
.approach .section-title,
.work .section-title,
.process .section-title {
    font-size: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.problems .section-title {
    color: #228bd9;
}

.work .section-title,
.process .section-title {
    color: #228bd9;
}

.problems .section-title::after,
.approach .section-title::after,
.work .section-title::after,
.process .section-title::after {
    content: "";
    height: 2px;
    flex: 1;
    background: #d9dfea;
}

.problems .grid {
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid #e4e8f0;
    background: #f2f4f9;
    border-radius: 6px;
}

.problems .card {
    text-align: center;
    padding: 20px 14px;
    border-right: 1px solid #dde3ee;
}

.problems .card:last-child {
    border-right: 0;
}

.problem-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}

.problems .card h3 {
    font-size: 14px;
    line-height: 1.35;
    color: #153f86;
}

@media (max-width: 991px) {
    .problems .grid {
        grid-template-columns: 1fr 1fr;
    }

    .problems .card {
        border-right: 0;
        border-bottom: 1px solid #dde3ee;
    }
}

@media (max-width: 767px) {
    .problems .grid {
        grid-template-columns: 1fr;
    }
}
