/*=========================================
Problem Section
=========================================*/
.problem-section{
    background:var(--light);
    }
    .problem-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:35px;
    height:100%;
    transition:var(--transition);
    box-shadow:var(--shadow-sm);
    }
    .problem-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    }
    .problem-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    border-radius:18px;
    background:#EEF5FF;
    margin-bottom:25px;
    }
    .problem-card h3{
    font-size:1.4rem;
    margin-bottom:15px;
    }
    .problem-card p{
    margin:0;
    color:var(--light-text);
    }
    @media(max-width:991px){
    .problem-card{
    padding:30px;
    }
    }
    @media(max-width:767px){
    .problem-card{
    text-align:center;
    }
    .problem-icon{
    margin:0 auto 20px;
    }
    }