.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
        }
        .hard-shadow {
            box-shadow: 6px 6px 0px 0px rgba(26, 30, 35, 0.1);
        }
        .structural-line {
            position: relative;
        }
        .structural-line::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: #BA0013;
        }
    
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .marquee-container {
            display: flex;
            width: max-content;
            animation: scroll 30s linear infinite;
        }
        .marquee-wrapper {
            overflow: hidden;
            white-space: nowrap;
            width: 100%;
        }

        /* Mobile Menu Styles matching SCREEN_56 */
        .mobile-menu-overlay {
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mobile-menu-overlay.open {
            transform: translateX(0);
        }
        .menu-backdrop {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }
        .menu-backdrop.active {
            opacity: 1;
            pointer-events: auto;
        }
