.card{

background:white;

padding:35px;

border-radius:18px;

box-shadow:var(--shadow-sm);

transition:.3s;

height:100%;

}

.card:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-md);

}

.card-icon{

width:60px;

height:60px;

background:var(--primary-light);

border-radius:16px;

display:flex;

justify-content:center;

align-items:center;

margin-bottom:20px;

}

.card h3{

margin-bottom:15px;

}

.card p{

margin-bottom:20px;

}