.problem-section {
    /* padding: 120px 20px; */
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.problem-left {
    position: sticky;
    top: 120px;
}


.problem-left p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

.problem-image {
    width: 100%;
    /* opacity: .15; */
    border-radius: 16px;
}

.problem-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item {
    display: flex;
    gap: 20px;
    padding: 26px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .3s;
}

.problem-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon {
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 12px;
}

.problem-item h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.problem-item p {
    color: #666;
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}