.why-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.why-card p{
    font-size: 24px;
    line-height: 30px;
}