.problem-solution-section {
    padding: 0 15px 40px 15px;
    background-color: #fff;
    text-align: center;
}

.ps-title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #000;
}

.ps-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.ps-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.ps-scroll-container::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 3px;
}

.ps-scroll-container::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 3px;
    width: 20%;
}

.ps-card {
    min-width: 280px;
    width: 85%;
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ps-top {
    background-color: #9e9e9e;
    padding: 15px;
    color: #000;
    text-align: left;
    border-radius: 12px;
}

.ps-bottom {
    background-color: #b9d6f2;
    padding: 15px;
    color: #000;
    text-align: left;
    flex: 1;
    border-radius: 12px
}

.ps-alert-row, .ps-solve-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.red-icon {
    background-color: #ff0000;
}

.green-icon {
    background-color: #4ad37b;
}

.ps-problem-text {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}

.ps-solve-title {
    font-weight: 900;
    font-size: 18px;
    align-self: center;
}

.ps-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    object-fit: cover;
}

.ps-solve-desc {
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
    padding-left: 34px;
}

@media (max-width: 900px) {
    .ps-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .ps-problem-text {
        font-size: 18px;
    }

    .ps-solve-desc {
        font-size: 16px;
    }

    .ps-solve-title {
        font-size: 18px;
    }

    .ps-solve-row {
        margin-bottom: 0;
    }
}