  .demo-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .demo-header {
            background: linear-gradient(45deg, #4682B4, #20B2AA);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .demo-content {
            padding: 40px;
            text-align: center;
            color: #333;
        }

        /* Stili del banner cookie */
        #cookieBanner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 25px;
            box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.4s ease-in-out;
            border-top: 3px solid #27ae60;
        }

        #cookieBanner.show {
            transform: translateY(0);
        }

        .cookie-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cookie-content {
            flex: 1;
            min-width: 300px;
        }

        .cookie-title {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 8px;
            color: #3498db;
        }

        .cookie-text {
            font-size: 0.95em;
            line-height: 1.5;
            color: #ecf0f1;
        }

        .cookie-text a {
            color: #3498db;
            text-decoration: underline;
        }

        .cookie-text a:hover {
            color: #5dade2;
        }

        .cookie-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            min-width: 200px;
            justify-content: flex-end;
        }

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9em;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-accept {
            background: linear-gradient(45deg, #27ae60, #2ecc71);
            color: white;
        }

        .btn-accept:hover {
            background: linear-gradient(45deg, #229954, #27ae60);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
        }

        .btn-reject {
            background: transparent;
            color: #bdc3c7;
            border: 2px solid #bdc3c7;
        }

        .btn-reject:hover {
            background: #e74c3c;
            color: white;
            border-color: #e74c3c;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }

        .btn-customize {
            background: transparent;
            color: #3498db;
            border: 2px solid #3498db;
        }

        .btn-customize:hover {
            background: #3498db;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        /* Modale personalizzazione */
        #customizeModal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #ecf0f1;
        }

        .modal-title {
            font-size: 1.4em;
            color: #2c3e50;
            font-weight: 600;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #7f8c8d;
            padding: 5px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #e74c3c;
            color: white;
        }

        .cookie-category {
            margin-bottom: 25px;
            padding: 20px;
            border: 2px solid #ecf0f1;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .cookie-category:hover {
            border-color: #3498db;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .category-title {
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.1em;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: #bdc3c7;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-switch.active {
            background: #27ae60;
        }

        .toggle-switch.disabled {
            background: #95a5a6;
            cursor: not-allowed;
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(30px);
        }

        .category-description {
            color: #7f8c8d;
            font-size: 0.9em;
            line-height: 1.5;
        }

        .modal-footer {
            display: flex;
            gap: 15px;
            justify-content: flex-end;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 2px solid #ecf0f1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookie-container {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                justify-content: center;
                width: 100%;
            }

            .cookie-btn {
                flex: 1;
                min-width: 120px;
            }

            .modal-content {
                margin: 10px;
                padding: 20px;
            }

            .category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            #cookieBanner {
                padding: 20px 15px;
            }
            
            .cookie-buttons {
                flex-direction: column;
            }
        }

        /* Status indicator */
        .cookie-status {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #27ae60;
            color: white;
            padding: 10px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            display: none;
            z-index: 10002;
        }

        .demo-button {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 10px;
        }

        .demo-button:hover {
            background: linear-gradient(45deg, #2980b9, #21618c);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }