.problem-section{

    background:white;

    padding:120px 0;

}

.problem-card{

    background:white;

    border-radius:22px;

    padding:35px;

    display:flex;

    gap:25px;

    align-items:flex-start;

    transition:.35s;

    border:1px solid #EEF2F7;

    height:100%;

}

.problem-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.problem-icon{

    width:70px;

    height:70px;

    min-width:70px;

    border-radius:20px;

    background:#E9F9F3;

    display:flex;

    justify-content:center;

    align-items:center;

}

.problem-icon i{

    font-size:30px;

    color:var(--primary);

}

.problem-card h4{

    margin-bottom:15px;

}

.problem-card p{

    margin-bottom:0;

}