
        /* Hero Section */
        .marketplace-hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, #0F2C7E 100%);
            color: white;
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
        }

        .marketplace-hero::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .marketplace-hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: fadeInDown 0.6s ease-out;
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            border-radius: 50px;
            padding: 0.5rem 1rem;
        }

        .breadcrumb {
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-item {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: rgba(255, 255, 255, 0.7);
            padding: 0 0.7rem;
            font-size: 0.7rem;
        }

        .breadcrumb-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
        }

        .breadcrumb-link:hover {
            color: white;
        }

        .breadcrumb-link i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        .breadcrumb-item.active {
            color: white;
            font-weight: 500;
        }

        /* Promo Banner */
        .promo-banner {
            background-color: var(--primary-orange);
            color: white;
            padding: 1.5rem 0;
            position: relative;
            overflow: hidden;
        }

        .banner-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .banner-text {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.8s ease-out;
        }

        .banner-text i {
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .banner-text {
                font-size: 1.1rem;
                flex-direction: column;
            }

            .banner-text i {
                margin-right: 0;
                margin-bottom: 0.5rem;
            }

            .breadcrumb {
                flex-direction: column;
                align-items: center;
            }

            .breadcrumb-item+.breadcrumb-item::before {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .marketplace-hero {
                padding: 3rem 0 2rem;
            }

            .hero-title {
                font-size: 1.8rem;
            }
        }
