  /* Cookie Banner Styles */
        #cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--primary) 0%, #87b9ab 100%);
            color: white;
            padding: 25px 20px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
            z-index: 10000;
            display: none;
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp {
            from {
                transform: translateY(100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        #cookie-banner.show {
            display: block;
        }

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

        .cookie-text {
            flex: 1;
            min-width: 250px;
        }

        .cookie-text h3 {
            margin: 0 0 8px 0;
            font-size: 1.2em;
            font-weight: 600;
        }

        .cookie-text p {
            margin: 0;
            font-size: 0.95em;
            opacity: 0.95;
            line-height: 1.5;
        }

        .cookie-text a {
            color: white;
            text-decoration: underline;
            opacity: 0.9;
        }

        .cookie-text a:hover {
            opacity: 1;
        }

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

        .cookie-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 0.95em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .cookie-btn.accept-all {
            background: white;
            color: #667eea;
        }

        .cookie-btn.accept-all:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .cookie-btn.reject-all {
            background: rgba(255,255,255,0.2);
            color: white;
            border: 2px solid white;
        }

        .cookie-btn.reject-all:hover {
            background: rgba(255,255,255,0.3);
        }

        .cookie-btn.settings {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.5);
        }

        .cookie-btn.settings:hover {
            border-color: white;
            background: rgba(255,255,255,0.1);
        }

        /* Cookie Settings Modal */
        #cookie-settings-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            z-index: 10001;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        #cookie-settings-modal.show {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 30px;
            position: relative;
        }

        .modal-header {
            margin-bottom: 20px;
        }

        .modal-header h2 {
            margin: 0 0 10px 0;
            color: #333;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: #f0f0f0;
            color: #333;
        }

        .cookie-category {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 15px;
        }

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

        .cookie-category h3 {
            margin: 0;
            font-size: 1.1em;
            color: #333;
        }

        .cookie-category p {
            margin: 0;
            color: #666;
            font-size: 0.9em;
            line-height: 1.5;
        }

        .toggle-switch {
            position: relative;
            width: 50px;
            height: 26px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 34px;
        }

        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: 0.3s;
            border-radius: 50%;
        }

        input:checked + .toggle-slider {
            background-color: #667eea;
        }

        input:checked + .toggle-slider:before {
            transform: translateX(24px);
        }

        input:disabled + .toggle-slider {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .modal-footer {
            margin-top: 25px;
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .modal-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 0.95em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn.primary {
            background: #667eea;
            color: white;
        }

        .modal-btn.primary:hover {
            background: #5568d3;
        }

        .modal-btn.secondary {
            background: #e0e0e0;
            color: #333;
        }

        .modal-btn.secondary:hover {
            background: #d0d0d0;
        }

        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                align-items: stretch;
            }

            .cookie-buttons {
                justify-content: stretch;
                display: flex;
                flex-direction: column;
            }

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

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