@layer utilities {
    .content-auto {
        content-visibility: auto;
    }
    .card-hover {
        transition: all 0.3s ease;
    }
    .card-hover:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px -8px rgba(22, 93, 255, 0.15);
    }
    .btn-hover {
        transition: all 0.3s ease;
    }
    .btn-hover:hover {
        background-color: #0F48E0;
        transform: translateY(-2px);
    }
    .hero-bg {
        background-image: url('https://picsum.photos/id/1033/1920/1080');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
    }
    .hero-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.85);
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
}