        .content {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .cookie-consent {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
            max-width: 360px;
            width: calc(100% - 40px);
        }

        .cookie-consent.show {
            transform: translateY(0);
            opacity: 1;
        }

        .cookie-container {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            border: 1px solid #e2e8f0;
            position: relative;
        }

        .cookie-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0f3cee, #0f3cee);
        }

        .cookie-inner {
            padding: 16px;
        }

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

        .cookie-title {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            color: #1e293b;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cookie-icon {
            color: #4f46e5;
        }

        .cookie-close {
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            border-radius: 50%;
            color: #64748b;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 4px;
        }

        .cookie-close:hover {
            background-color: #f8fafc;
            color: #1e293b;
            transform: rotate(90deg);
        }

        .cookie-content {
            font-size: 13px;
            margin-bottom: 12px;
            color: #64748b;
        }

        .cookie-footer {
            display: flex;
            gap: 8px;
        }

        .btn {
            padding: 8px 12px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            font-size: 13px;
            border: 1px solid transparent;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex: 1;
        }

        .btn-outline {
            background-color: #ffffff;
            border-color: #e2e8f0;
            color: #0f3cee;
        }

        .btn-outline:hover {
            background-color: #f8fafc;
            border-color: #64748b;
        }

        .btn-primary {
            background-color: #4f46e5;
            color: white;
            box-shadow: 0 2px 4px -1px rgba(79, 70, 229, 0.2);
        }

        .btn-primary:hover {
            background-color: #4338ca;
        }

        /* Mobile responsiveness */
        @media (max-width: 480px) {
            .cookie-consent {
                bottom: 10px;
                right: 10px;
                left: 10px;
                width: auto;
                max-width: none;
            }
        }
