        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #E0E0E0;
            /* new background: #E0E0E0 rgb(224, 224, 224) hsl(0, 0%, 88%) */
            font-family: 'Montserrat', sans-serif;
            color: #1A1A1A;
            line-height: 1.4;
        }

        /* minimalist container – only the requested section */
        .demo-wrapper {
            /* max-width: 1440px; */
            margin: 0 auto;
            padding: 3rem 2rem 4rem 2rem;
            /* background: #E0E0E0; */
            color: white;
            /* matching body background */
        }

        /* exact reproduction: "GET A CONSULTATION" button style (from original design) */
        .consultation-btn-wrap {
            text-align: center;
            margin: 2rem 0 3rem 0;
        }

        .btn-consultation {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #FFF32A;
            /* primary yellow from brand */
            color: #000000;
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 14px 38px;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.25s ease;
            font-family: 'Montserrat', sans-serif;
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .btn-consultation:hover {
            background-color: #e5db1c;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        /* ========= PRODUCT CATEGORY SLIDER (icons strip) ========= */
        /* fully faithful to the original design: infinite loop, clickable items, hover effect */
        .categories-slider-section {
            margin-top: 2rem;
            width: 100%;
            overflow: hidden;
            position: relative;
            user-select: none;
        }

        .slider-track {
            display: flex;
            gap: 40px;
            /* matches original margin-right: 40px */
            animation: scrollCategories 28s linear infinite;
            width: fit-content;
            will-change: transform;
        }

        /* pause animation on hover (better UX) */
        .categories-slider-section:hover .slider-track {
            animation-play-state: paused;
        }

        .category-item {
            flex: 0 0 auto;
            width: 140px;
            /* matches original approx 137px + comfortable display */
            text-align: center;
            transition: transform 0.2s ease;
        }

        .category-item:hover {
            transform: scale(1.03);
        }

        .category-icon {
            background: white;
            border-radius: 50%;
            width: 140px;
            height: 140px;
            margin: 0 auto 12px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: box-shadow 0.2s;
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03);
        }

        .category-item:hover .category-icon {
            box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
            background: #ffffff;
        }

        .category-icon img {
            width: 70px;
            height: auto;
            display: block;
            object-fit: contain;
            transition: transform 0.2s;
        }

        .category-item:hover .category-icon img {
            transform: scale(1.02);
        }

        .category-label {
            font-size: 14px;
            font-weight: 600;
            color: white;
            margin-top: 6px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        /* scrolling animation – infinite seamless loop using duplicate items */
        @keyframes scrollCategories {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* responsive: smaller gap on mobile */
        @media (max-width: 680px) {
            .demo-wrapper {
                padding: 2rem 1rem;
            }

            .slider-track {
                gap: 24px;
            }

            .category-item {
                width: 110px;
            }

            .category-icon {
                width: 85px;
                height: 85px;
            }

            .category-icon img {
                width: 55px;
            }

            .category-label {
                font-size: 11px;
            }

            .btn-consultation {
                padding: 12px 28px;
                font-size: 14px;
            }
        }

        /* optional extra spacing to feel exactly like original under button */
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title h2 {
            font-size: 38px;
            font-weight: 700;
            color: white;
            letter-spacing: -0.3px;
        }

        .section-title .separator {
            width: 70px;
            height: 3px;
            background: #FFF32A;
            margin: 14px auto 0;
            border-radius: 4px;
        }

        /* make the whole block resemble the original shop our products vibe */
        .attribution-note {
            text-align: center;
            font-size: 12px;
            color: #555;
            margin-top: 3rem;
            border-top: 1px solid #ccc;
            padding-top: 1.5rem;
        }

        a {
            text-decoration: none;
        }

        /* links inside category items should preserve block behaviour */
        .category-link {
            display: block;
            text-decoration: none;
            color: white;
        }