/* Effet de lueur subtil pour l'image (façon SaaS) */
.glow-effect {
    box-shadow: 0 0 40px -10px rgba(0, 95, 115, 0.5);
}

/* Animations et ombres pour les cartes (Bento Grid) */
.bento-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 49, 83, 0.8);
}