        /* Cookie consent popup styles */
        .cookie-consent-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #fff;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s ease-out;
        }
        
        .cookie-consent-popup.active {
            transform: translateY(0);
        }
        
        .cookie-content {
            max-width: 1140px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
        }
		
        .cookie-text .form-inline {
			gap: 25px;
		}
		
		.cookie-text .form-inline label {
			gap: 5px;
		}
        .cookie-text h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        
        .cookie-text p {
            margin-bottom: 0;
            line-height: 1.5;
            color: #555;
        }
        
        .cookie-buttons {
            display: grid;
			gap: 10px;
			flex: .5;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.2s;
        }
		
		.cookie-links {
			display: flex;
			justify-content: space-between;
		}
        
        .accept-btn {
            background-color: #275d8e;
            color: white;
        }
        
        .accept-btn:hover {
            background-color: #2980b9;
        }
        
        .decline-btn {
            background-color: #d7343a;
            color: white;
        }
        
        .decline-btn:hover {
            background-color: #c0392b;
        }
        
        /* Overlay for when popup is active */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }
        
        .overlay.active {
            display: block;
        }
        
        /* Demo content styles */
        .demo-content {
            padding: 40px 20px;
            text-align: center;
        }
        
        .demo-content h1 {
            color: #2c3e50;
        }
        
        .demo-content p {
            max-width: 600px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }
        
        .cookie-status {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 4px;
            margin-top: 20px;
            text-align: left;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cookie-status h3 {
            margin-top: 0;
        }
        
        .reset-btn {
            background-color: #95a5a6;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
        }
        
        .reset-btn:hover {
            background-color: #7f8c8d;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
			
			.cookie-buttons .text-right {
				display: grid;
				gap: 10px;
			}
			
			.cookie-buttons .text-right button {
				text-align: left;
			}
			
			.cookie-links {
				font-size: 13px;
			}
			
			.cookie-text .form-inline {
				margin-top: 10px;
			}
			.cookie-consent-popup {
				max-height: 80vh;
				overflow: auto;
			}
        }