

/* SECTION */
#cleanMainSectionX99{
    padding:80px 20px;
}

/* CONTAINER */
.cleanContainerX99{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

/* BOX */
.cleanBoxX99{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* TITLE */
.cleanTitleX99{
    color: black;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}

/* TITLE ICON */
.cleanTitleIconX99{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

/* COLORS */
.blueX99{background:#3b82f6;}
.greenX99{background:#22c55e;}
.redX99{background:#ef4444;}
.purpleX99{background:#8b5cf6;}

/* LIST */
.cleanListX99 li{
    list-style:none;
    margin-bottom:12px;
    font-size:14px;
    color:#444;
}

.cleanListX99 i{
    color:#3b82f6;
    margin-right:8px;
}

/* STEPS */
.cleanStepsWrapX99{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.cleanStepX99{
    display:flex;
    gap:15px;
}

/* STEP ICON */
.cleanStepIconX99{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

/* TEXT */
.cleanStepX99 h4{
    margin-bottom:5px;
}

.cleanStepX99 p{
    font-size:14px;
    color:#555;
}

/* RESPONSIVE */
@media(max-width:900px){
    .cleanContainerX99{
        grid-template-columns:1fr;
    }
}