 <!-- Custom CSS for Cookie Consent -->
    <style>
        /* Styling for the cookie consent bar at the bottom */
        #cookieConsentBar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 15px;
            font-size: 14px;
            display: none; /* Initially hidden */
            transition: transform 0.5s ease-in-out; /* Sliding effect */
            transform: translateY(100%);
        }

        #cookieConsentBar.show {
            transform: translateY(0); /* Slide up when visible */
        }

        #cookieConsentBar button {
            background-color: #28a745;
            border: none;
            padding: 10px 20px;
            color: white;
            cursor: pointer;
            border-radius: 5px;
        }

        #cookieConsentBar a {
            color: #fff;
            text-decoration: underline;
        }
    </style>/* CSS Document */

