/* Custom styles */
* { box-sizing: border-box; }

body { -webkit-font-smoothing: antialiased; }

/* Smooth transitions */
a, button { transition: all 0.2s ease; }

/* Card hover */
.card-hover {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card-hover:hover {
    box-shadow: 0 4px 16px rgba(5, 32, 60, 0.16);
    transform: translateY(-2px);
}
