    /* <style> */
        body {
            display: flex; 
            justify-content: center; 
            align-items: flex-start; 
            min-height: 100vh; 
            margin: 0; 
            background-color: #f4f4f9; 
            font-family: Arial, sans-serif; 
            padding-top: 30px; 
            padding-bottom: 40px; 
            box-sizing: border-box;
        }

        .cards-stack {
            display: flex; 
            flex-direction: column; 
            width: 100%; 
            max-width: 320px;
        }

        .brand-header {
            display: flex; 
            flex-direction: column; 
            width: 100%; 
            background-color: #ffffff; 
            border-radius: 12px; 
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
            overflow: hidden; 
            margin-bottom: 15px;
        }

        .brand-logo {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .brand-text-container {
            padding: 15px 20px 20px 20px;
            text-align: center;
        }

        .brand-title {
            margin: 0;
            font-size: 24px;
            color: #212529;
            font-weight: 700;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .brand-subtitle {
            margin: 6px 0 0 0;
            font-size: 14px;
            color: #6c757d;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .menu-card {
            width: 100%;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 25px; 
        }

        .menu-card:last-child {
            margin-bottom: 0;
        }

        .menu-header {
            background-color: #343a40;
            padding: 15px;
            text-align: center;
        }

        .menu-header h2 {
            margin: 0;
            font-size: 20px;
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .menu-card.secondary .menu-header {
            background-color: #495057; 
        }

        .menu-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .menu-button {
            display: block;
            text-align: center;
            padding: 15px 20px;
            font-size: 16px;
            font-weight: bold;
            color: #ffffff;
            background-color: #007bff;
            text-decoration: none;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.1s ease, background-color 0.2s ease;
            margin-bottom: 15px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        .menu-button:last-child {
            margin-bottom: 0;
        }

        .menu-button:hover {
            background-color: #0056b3;
        }

        .menu-button:active {
            transform: scale(0.98);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .menu-subheader {
            font-size: 12px;
            font-weight: bold;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
            margin-bottom: 15px;
            text-align: left;
            padding-left: 2px;
        }
        
        .bottom-brand-logo {
            width: 100%;
            height: 100px;
            object-fit: cover;
            padding-bottom: 0px;
            bottom: 0;
        }

        .page-footer {
            position: sticky;
            bottom: 0;
            width: 100%;
            max-width: 100%;
            margin-top: 40px;
            padding-top: 5px;
            text-align: center;           
        }

        .page-footer p {
            margin: 0;
            font-size: 13px;
            color: #8c939b;
            line-height: 1.6;
            margin-bottom: 4px;
        }

        .footer-link {
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }
        
        .footer-link:hover {
            text-decoration: underline;
        }
        
        .footer-slider-banner {
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px; 
            background-color: #969595;
            overflow: hidden;
            box-shadow: 0 -4px 10px rgba(0,0,0,0.3);
            z-index: 9999;
            display: flex;
            justify-content: center;
        }

        .slider-track {
            display: flex;
            position: relative;
            width: 320px;
            height: 100px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 320px;
            height: 100px;
            opacity: 0;
            transform: translateX(-100%);
            transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
        }

        .slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .slide.exit {
            opacity: 0;
            transform: translateX(100%);
        }

        .slide img {
            width: 320px;
            height: 100px;
            object-fit: cover;
        }

    /* </style> */