@layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .nav-shadow {
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            }
            .text-highlight {
                text-decoration: underline;
                text-decoration-color: theme('colors.primary');
                text-decoration-thickness: 3px;
                text-underline-offset: 4px;
            }
        }
@layer utilities {
            .content-auto {
                content-visibility: auto;
            }
            .nav-shadow {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            }
            .text-highlight {
                text-decoration: underline;
                text-decoration-color: theme('colors.primary');
                text-decoration-thickness: 3px;
                text-underline-offset: 4px;
            }
            .card-hover {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .card-hover:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            }
        }
