.benefit-card {
    background: white;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.benefit-card p {
    font-size: 14px;
    color: #6b7280;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}