
        .demo-container {
            text-align: center;
            color: white;
            margin-bottom: 100px;
        }

        .demo-container h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .demo-container p {
            font-size: 1.2em;
            opacity: 0.9;
        }

        /* Cookie Banner Styles */
        #cookieBanner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
            padding: 25px 20px;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10000;
            border-top: 3px solid #d4af37;
        }

        #cookieBanner.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }

        .cookie-icon {
            font-size: 48px;
            flex-shrink: 0;
        }

        .cookie-text {
            flex: 1;
            min-width: 300px;
        }

        .cookie-text h3 {
            color: #1f2937;
            font-size: 1.4em;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .cookie-text p {
            color: #4b5563;
            line-height: 1.6;
            font-size: 0.95em;
        }

        .cookie-text a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .cookie-text a:hover {
            color: #aa8c2a;
            text-decoration: underline;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .language-toggle {
            background: white;
            border: 2px solid #e5e7eb;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.9em;
            font-weight: 600;
            color: #4b5563;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .language-toggle:hover {
            border-color: #d4af37;
            color: #d4af37;
        }

        .cookie-btn {
            padding: 12px 28px;
            border: none;
            border-radius: 8px;
            font-size: 0.95em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .btn-accept {
            background: linear-gradient(135deg, #d4af37 0%, #aa8c2a 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        }

        .btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
        }

        .btn-settings {
            background: white;
            color: #4b5563;
            border: 2px solid #e5e7eb;
        }

        .btn-settings:hover {
            border-color: #d4af37;
            color: #d4af37;
            transform: translateY(-2px);
        }

        .btn-decline {
            background: transparent;
            color: #6b7280;
            border: 2px solid #e5e7eb;
        }

        .btn-decline:hover {
            border-color: #ef4444;
            color: #ef4444;
        }

        /* Settings Modal */
        #cookieSettings {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 10001;
            padding: 20px;
            overflow-y: auto;
        }

        #cookieSettings.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .settings-modal {
            background: white;
            border-radius: 16px;
            max-width: 600px;
            width: 100%;
            padding: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .settings-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e5e7eb;
        }

        .settings-header h2 {
            color: #1f2937;
            font-size: 1.6em;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 28px;
            color: #6b7280;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            transition: all 0.3s;
        }

        .close-btn:hover {
            background: #f3f4f6;
            color: #1f2937;
        }

        .cookie-category {
            margin-bottom: 20px;
            padding: 10px;
            background: #f9fafb;
            border-radius: 10px;
            border-left: 4px solid #d4af37;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .category-header h3 {
            color: #1f2937;
            font-size: 1.1em;
        }

        .category-description {
            color: #6b7280;
            font-size: 0.9em;
            line-height: 1.5;
        }

        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 52px;
            height: 28px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #cbd5e1;
            transition: 0.3s;
            border-radius: 28px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 20px;
            width: 20px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background-color: #d4af37;
        }

        input:checked + .slider:before {
            transform: translateX(24px);
        }

        input:disabled + .slider {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .settings-buttons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 2px solid #e5e7eb;
        }

        .settings-buttons button {
            flex: 1;
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-icon {
                font-size: 40px;
            }

            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }

            .cookie-btn {
                flex: 1;
                min-width: 120px;
            }

            .settings-modal {
                margin: 20px;
            }

            .settings-buttons {
                flex-direction: column;
            }
        }