        /* Cookie Consent Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            color: var(--white);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.5s ease;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-content {
            flex: 1;
            padding-right: 20px;
        }

        .cookie-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .cookie-text {
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .cookie-link {
            color: var(--accent-color);
            text-decoration: underline;
            transition: all 0.3s ease;
        }

        .cookie-link:hover {
            color: var(--white);
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .cookie-accept {
            background: var(--white);
            color: var(--primary);
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-accept:hover {
            background: var(--white);
            color: var(--primary);
        }

        .cookie-settings-btn {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--white);
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .cookie-close {
            background: transparent;
            color: var(--white);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 10px;
        }

        .cookie-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Cookie Settings Panel */
        .cookie-settings-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .cookie-settings-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .cookie-settings-panel {
            background: var(--white);
            border-radius: 10px;
            width: 100%;
            max-width: 600px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(20px);
            transition: transform 0.3s ease;
        }

        .cookie-settings-overlay.show .cookie-settings-panel {
            transform: translateY(0);
        }

        .cookie-settings-header {
            padding: 20px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cookie-settings-header h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
            margin: 0;
        }

        .cookie-settings-close {
            background: transparent;
            border: none;
            color: var(--text-light);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-settings-close:hover {
            background: var(--light-bg);
            color: var(--primary);
        }

        .cookie-settings-body {
            padding: 20px;
        }

        .cookie-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .cookie-option:last-child {
            border-bottom: none;
        }

        .cookie-option-info {
            flex: 1;
            padding-right: 20px;
        }

        .cookie-option-info h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary);
            margin: 0 0 8px 0;
        }

        .cookie-option-info p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
        }

        /* Toggle Switch */
        .cookie-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 26px;
            flex-shrink: 0;
        }

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

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

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

        input:checked+.cookie-slider {
            background-color: var(--accent-color);
        }

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

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

        .cookie-settings-footer {
            padding: 15px 20px;
            border-top: 1px solid var(--border-color);
            text-align: right;
        }

        .cookie-save-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cookie-save-btn:hover {
            background: var(--primary-light);
        }

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

            .cookie-content {
                padding-right: 0;
                margin-bottom: 15px;
            }

            .cookie-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cookie-close {
                position: absolute;
                top: 10px;
                right: 10px;
            }

            .cookie-settings-panel {
                width: 90%;
                margin: 0 15px;
            }

            .cookie-option {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-option-info {
                padding-right: 0;
                margin-bottom: 10px;
            }
        }