.how-to-cleaning-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.cleaning-step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cleaning-step-wrapper:not(:last-child)::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #1d7c31;
    margin: 12px 0;
}

.cleaning-step {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px 24px;
    align-items: center;
    padding: 14px 18px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    width: 100%;
    box-sizing: border-box;
}

.cleaning-step-number {
    color: #1d7c31;
    font-weight: 800;
    font-size: 16px;
    position: relative;
    padding-top: 4px;
}

.cleaning-step-body h3 {
    margin: 0 0 8px;
    color: #1d7c31;
}

.cleaning-step-body p {
    margin: 0 0 6px;
    color: #4d4d4d;
    line-height: 1.7;
    font-size: 15px;
    max-width: 720px;
}

@media (max-width: 960px) {
    .how-to-cleaning-steps {
        padding: 12px 14px;
        max-width: none;
    }

    .cleaning-step {
        display: initial;
        grid-template-columns: 90px 1fr;
        gap: 10px 16px;
    }
}
