body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.treatment-section {
    padding: 100px 20px;
    background: #f6f8f3;
}

.treatment-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.treatment-title {
    font-size: 42px;
    margin-bottom: 60px;
}

.treatment-title span {
    color: #a5cd48;
}

/* FLOW LAYOUT */
.treatment-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* STEP CARD */
.step-card {
    background: white;
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    width: 200px;
    transition: .4s ease;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

/* GLOW HOVER EFFECT */
.step-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(107, 142, 35, .15), transparent);
    opacity: 0;
    transition: .5s;
}

.step-card:hover::before {
    opacity: 1;
}

/* NUMBER BADGE */
.step-badge {
    width: 50px;
    height: 50px;
    background: #a5cd48;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

/* ARROWS */
.flow-arrow {
    font-size: 42px;
    color: #a5cd48;
    font-weight: bold;
}

/* IMAGE */
.process-image {
    max-width: 750px;
    margin: 60px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.process-image img {
    width: 100%;
    display: block;
    animation: slowZoom 6s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* ENTRANCE ANIMATIONS */
.reveal-top {
    opacity: 0;
    transform: translateY(-40px);
    transition: 1s ease;
}

.reveal-bottom {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: 1s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: 1s ease;
}

.active {
    opacity: 1;
    transform: translate(0);
}

/* RESPONSIVE MOBILE */
@media(max-width: 900px) {
    .treatment-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .step-card {
        width: 100%;
        max-width: 320px;
    }
}