.department-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.department-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(23,92,221,.15);
}

.department-img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.department-content{
    padding:30px;
}

.department-icon{
    width:70px;
    height:70px;
    background:#eaf2ff;
    color:#175cdd;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:20px;
}

.department-content h4{
    font-weight:700;
    margin-bottom:15px;
}

.department-content p{
    color:#6c757d;
    margin-bottom:20px;
}

.department-list{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.department-list li{
    margin-bottom:10px;
    padding-left:25px;
    position:relative;
    color:#555;
}

.department-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#175cdd;
    font-weight:700;
}

.department-card .btn{
    border-radius:50px;
    padding:10px 28px;
}