@layer utilities {
            .text-shadow {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            }
            .content-auto {
                content-visibility: auto;
            }
            .nav-active {
                @apply border-b-2 border-primary text-primary;
            }
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #FF6B00;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #e55a00;
        }
        html {
            scroll-behavior: smooth;
        }
        .img-hover {
            transition: transform 0.3s ease;
        }
        .img-hover:hover {
            transform: scale(1.02);
        }
