		        /* Cookie Notification Popup */
        #cookieNotification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            max-width: 600px;
            width: calc(100% - 40px);
            padding: 25px 30px;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        }

        #cookieNotification.show {
            opacity: 1;
            visibility: visible;
        }

        .cookie-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .cookie-icon {
            font-size: 40px;
            text-align: center;
        }

        .cookie-text {
            color: #333;
            font-size: 15px;
            line-height: 1.6;
            text-align: center;
        }

        .cookie-text strong {
            color: #667eea;
            font-weight: 600;
        }

        .cookie-text a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .cookie-text a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .cookie-btn-accept {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .cookie-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .cookie-btn-decline {
            background: #f5f5f5;
            color: #666;
        }

        .cookie-btn-decline:hover {
            background: #e0e0e0;
        }

        /* Demo Content */
        .demo-content {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            width: 100%;
        }

        .demo-content h1 {
            color: #333;
            margin-bottom: 20px;
            font-size: 32px;
        }

        .demo-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .demo-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: transform 0.3s ease;
        }

        .demo-btn:hover {
            transform: translateY(-2px);
        }

        @media (max-width: 480px) {
            #cookieNotification {
                bottom: 10px;
                padding: 20px;
            }

            .cookie-text {
                font-size: 14px;
            }

            .cookie-buttons {
                flex-direction: column;
            }

            .cookie-btn {
                width: 100%;
            }
        }