/* Cookie Consent Popup Styles */
        .cookie-consent-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none;
            animation: fadeIn 0.3s ease-in-out;
        }
        
        .cookie-consent-overlay.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cookie-consent-popup {
            background: #ffffff;
            border-radius: 15px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            animation: slideUp 0.4s ease-out;
            position: relative;
        }
        
        .cookie-consent-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px 25px;
            border-radius: 15px 15px 0 0;
            text-align: center;
        }
        
        .cookie-consent-header h4 {
            margin: 0;
            font-weight: 600;
            font-size: 1.3rem;
        }
        
        .cookie-consent-body {
            padding: 25px;
        }
        
        .cookie-info-section {
            margin-bottom: 20px;
        }
        
        .cookie-info-section h6 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1rem;
        }
        
        .cookie-info-section p {
            color: #7f8c8d;
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .cookie-types {
            margin: 20px 0;
        }
        
        .cookie-type-item {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 10px;
            border-left: 4px solid #667eea;
        }
        
        .cookie-type-item:last-child {
            margin-bottom: 0;
        }
        
        .cookie-type-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .cookie-type-title {
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            flex-grow: 1;
        }
        
        .cookie-type-required {
            background: #e74c3c;
            color: white;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 10px;
        }
        
        .cookie-type-optional {
            background: #27ae60;
            color: white;
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 10px;
            margin-left: 10px;
        }
        
        .cookie-type-description {
            color: #7f8c8d;
            font-size: 0.85rem;
            margin: 0;
            line-height: 1.5;
        }
        
        .cookie-toggle {
            margin-left: 15px;
        }
        
        .cookie-actions {
            display: flex;
            gap: 10px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        
        .cookie-actions .btn {
            flex: 1;
            min-width: 120px;
            font-weight: 500;
            padding: 12px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .btn-accept-all {
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
            border: none;
            color: white;
        }
        
        .btn-accept-all:hover {
            background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }
        
        .btn-accept-selected {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
        }
        
        .btn-accept-selected:hover {
            background: linear-gradient(135deg, #5a6fd8 0%, #6b4397 100%);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }
        
        .btn-reject-all {
            background: #ffffff;
            border: 2px solid #e74c3c;
            color: #e74c3c;
        }
        
        .btn-reject-all:hover {
            background: #e74c3c;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        .privacy-links {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #ecf0f1;
        }
        
        .privacy-links a {
            color: #667eea;
            text-decoration: none;
            font-size: 0.9rem;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .privacy-links a:hover {
            color: #764ba2;
            text-decoration: underline;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cookie-consent-popup {
                width: 95%;
                margin: 10px;
            }
            
            .cookie-consent-header {
                padding: 15px 20px;
            }
            
            .cookie-consent-body {
                padding: 20px;
            }
            
            .cookie-actions {
                flex-direction: column;
            }
            
            .cookie-actions .btn {
                flex: none;
                width: 100%;
            }
        }
        
        /* Toggle Switch Styles */
        .form-check-input:checked {
            background-color: #667eea;
            border-color: #667eea;
        }
        
        .form-check-input:focus {
            border-color: #667eea;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
        }
        
        /* Cookie Banner (Alternative simple version) */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 15px 20px;
            z-index: 9998;
            display: none;
            animation: slideInUp 0.5s ease-out;
        }
        
        .cookie-banner.show {
            display: block;
        }
        
        .cookie-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cookie-banner-text {
            flex: 1;
            min-width: 250px;
        }
        
        .cookie-banner-text h6 {
            margin: 0 0 5px 0;
            font-weight: 600;
        }
        
        .cookie-banner-text p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .cookie-banner-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .cookie-banner-actions .btn {
            padding: 8px 16px;
            font-size: 0.9rem;
            border-radius: 6px;
            white-space: nowrap;
        }
        
        @keyframes slideInUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* Demo Buttons */
        .demo-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            margin: 10px;
            transition: all 0.3s ease;
        }
        
        .demo-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            color: white;
        }
        
        /* Status Display */
        .consent-status {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #667eea;
        }
        
        .consent-status h5 {
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .status-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .status-item:last-child {
            border-bottom: none;
        }
        
        .status-label {
            font-weight: 500;
            color: #2c3e50;
        }
        
        .status-value {
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        
        .status-value.accepted {
            color: #27ae60;
            font-weight: 500;
        }
        
        .status-value.rejected {
            color: #e74c3c;
            font-weight: 500;
        }