.treat-wrapper {
    width: 100%;
    padding: 40px 20px;
    /*background: #f8f9fb;*/
    /*font-family: 'Segoe UI', sans-serif;*/
}

.treat-title {
    text-align: center;
    margin-bottom: 40px;
}

.treat-title p {
    color: #6c7a89;
    font-size: 15px;
}

.treat-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.treat-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 5%;
    width: 90%;
    height: 3px;
    background: linear-gradient(to right, #cd0380, #cd0380);
    z-index: 0;
}

.treat-step {
    width: 23%;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.treat-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #cd0380;
    color: #fff;
    border-radius: 50%;
    line-height: 60px;
    font-size: 22px;
    font-weight: bold;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
}

.step-day {
    font-weight: 600;
    color: #cd0380;
    margin-bottom: 10px;
}

.step-title {
    font-weight: bold;
    color: #1a2b49;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .treat-steps {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .treat-step {
        width: 100%;
    }

    /* Remove old horizontal line */
    .treat-steps::before {
        display: none;
    }
}
