/*==================================================
 SOFTONIX PROS CONS
==================================================*/


.st-pros-cons{

    background:#fff;
    border-radius:20px;
    padding:35px;
    margin-bottom:30px;
    box-shadow:0 10px 35px rgba(15,23,42,.08);

}



.st-pros-cons-title{

    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;

}



.st-pros-cons-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;

}



.st-pros-card,
.st-cons-card{

    padding:25px;
    border-radius:16px;

}



.st-pros-card{

    background:#f0fdf4;
    border:1px solid #bbf7d0;

}



.st-cons-card{

    background:#fef2f2;
    border:1px solid #fecaca;

}



.st-pros-card h3{

    color:#16a34a;
    font-size:20px;

}



.st-cons-card h3{

    color:#dc2626;
    font-size:20px;

}



.st-pros-content,
.st-cons-content{

    margin-top:15px;
    line-height:1.8;
    color:#475569;

}



@media(max-width:768px){

.st-pros-cons-grid{

    grid-template-columns:1fr;

}


}