  @media only screen and (min-width: 0rem) {
            #sbsr-2289 {
                padding: var(--sectionPadding);
                overflow: hidden;
            }

            #sbsr-2289 .cs-container {
                width: 100%;
                max-width: 36.5rem;
                margin: auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                gap: 3rem;
            }

            #sbsr-2289 .cs-content {
                text-align: left;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                position: relative;
                z-index: 10;
            }

            #sbsr-2289 .cs-text {
                margin-bottom: 1rem;
            }

            #sbsr-2289 .cs-text:last-of-type {
                margin-bottom: 2rem;
            }

            #sbsr-2289 .cs-features {
                width: 100%;
                margin: 0 0 2rem;
                padding: clamp(1.5rem, 4vw, 2rem);
                background-color: #fef5f4;
                border-left: 0.25rem solid var(--secondary);
                font-family: 'roboto';
            }
 #sbsr-2289 .cs-features2 {
                width: 100%;
                margin: 0 0 2rem;
                padding: clamp(1.5rem, 4vw, 2rem);
                background-color: #ffffff;
                border-left: 0.25rem solid var(--secondary);
                font-family: 'roboto';
            }
            #sbsr-2289 .cs-h3 {
                font-size: 1rem;
                font-weight: 700;
                line-height: 1.5em;
                margin: 0 0 0.75rem;
                color: var(--headerColor);
            }

            #sbsr-2289 .cs-ul {
                font-size: 0.75rem;
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            #sbsr-2289 .cs-li {
                font-size: 1rem;
                line-height: 1.5em;
                list-style: none;
                padding-left: clamp(1.25rem, 3vw, 1.5rem);
                color: var(--bodyTextColor);
                position: relative;
            }

            #sbsr-2289 .cs-li::before {
                content: "";
                width: 0.5rem;
                height: 0.5rem;
                margin-top: 0.5rem;
                background-color: var(--secondary);
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                transform: rotate(45deg);
            }

            #sbsr-2289 .cs-button-solid {
                font-size: 1rem;
                font-weight: 700;
                line-height: clamp(2.875rem, 5.5vw, 3.5rem);
                text-align: center;
                text-decoration: none;
                min-width: 9.375rem;
                margin: 0;
                box-sizing: border-box;
                padding: 0 1.5rem;
                background-color: var(--primary);
                color: #1a1a1a;
                display: inline-block;
                position: relative;
                z-index: 1;
                transition: color 0.3s;
                font-family: 'poppins';
            }

            #sbsr-2289 .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #000;
                opacity: 1;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #sbsr-2289 .cs-button-solid:hover {
                color: #fff;
            }

            #sbsr-2289 .cs-button-solid:hover:before {
                width: 100%;
            }

            #sbsr-2289 .cs-image-group {
                width: 100%;
                height: auto;
                display: block;
                order: -1;
                position: relative;
                z-index: 1;
            }

            /* Main Gallery Container */
            #sbsr-2289 .cs-gallery-container {
                width: 100%;
                position: relative;
            }

            /* Main Image Display */
            #sbsr-2289 .cs-main-image {
                width: 100%;
                height: 70vw;
                max-height: 25rem;
                position: relative;
                margin-bottom: 1rem;
                border-radius: 0.5rem;
                overflow: hidden;
                background-color: #ffffff;
                
            }

            #sbsr-2289 .cs-main-image img {
                width: 100%;
                height: 100%;
                
                position: absolute;
                top: 0;
                left: 0;
                opacity: 0;
                transition: opacity 0.3s ease;
                object-fit: contain;
            }

            #sbsr-2289 .cs-main-image img.active {
                opacity: 1;
            }

            /* Carousel Arrows */
            #sbsr-2289 .cs-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 2.5rem;
                height: 2.5rem;
                background-color: rgba(255, 255, 255, 0.9);
                border: none;
                border-radius: 50%;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.2rem;
                color: var(--headerColor);
                transition: background-color 0.3s, transform 0.2s;
                z-index: 10;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            }

            #sbsr-2289 .cs-arrow:hover {
                background-color: white;
                transform: translateY(-50%) scale(1.1);
            }

            #sbsr-2289 .cs-arrow-left {
                left: 1rem;
            }

            #sbsr-2289 .cs-arrow-right {
                right: 1rem;
            }

            /* Thumbnail Gallery */
            #sbsr-2289 .cs-thumbnails {
                display: flex;
                gap: 0.5rem;
                overflow-x: auto;
                padding: 0.5rem 0;
                scrollbar-width: thin;
                scrollbar-color: var(--secondary) #f1f1f1;
            }

            #sbsr-2289 .cs-thumbnails::-webkit-scrollbar {
                height: 4px;
            }

            #sbsr-2289 .cs-thumbnails::-webkit-scrollbar-track {
                background: #f1f1f1;
                border-radius: 2px;
            }

            #sbsr-2289 .cs-thumbnails::-webkit-scrollbar-thumb {
                background: var(--secondary);
                border-radius: 2px;
            }

            #sbsr-2289 .cs-thumbnail {
                flex-shrink: 0;
                width: 4rem;
                height: 4rem;
                border-radius: 0.375rem;
                overflow: hidden;
                cursor: pointer;
                border: 2px solid transparent;
                transition: border-color 0.3s, transform 0.2s;
                background-color: #f5f5f5;
            }

            #sbsr-2289 .cs-thumbnail:hover {
                transform: scale(1.05);
            }

            #sbsr-2289 .cs-thumbnail.active {
                border-color: var(--secondary);
            }

            #sbsr-2289 .cs-thumbnail img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            #sbsr-2289 .cs-heading {
                font-size: 1.25rem;
                font-weight: 700;
                line-height: 1.2em;
                margin: 0 0 0.5rem;
                color: var(--headerColor);
            }

            #sbsr-2289 .cs-desc {
                font-size: 1rem;
                line-height: 1.5em;
                color: var(--bodyTextColor);
            }

            #sbsr-2289 .cs-graphic {
                width: 150%;
                height: auto;
                position: absolute;
                top: 50%;
                left: 50%;
                z-index: -1;
                transform: translate(-50%, -50%);
            }
        }

        /* Tablet - 768px */
        @media only screen and (min-width: 48rem) {
            #sbsr-2289 .cs-main-image {
                height: 50vw;
                max-height: 30rem;
            }

            #sbsr-2289 .cs-thumbnail {
                width: 5rem;
                height: 5rem;
            }

            #sbsr-2289 .cs-arrow {
                width: 3rem;
                height: 3rem;
                font-size: 1.4rem;
            }
        }

        /* Desktop - 1024px */
        @media only screen and (min-width: 64rem) {
            #sbsr-2289 .cs-container {
                max-width: 80rem;
                flex-direction: row;
                align-items: stretch;
                gap: 1.25rem;
            }

            #sbsr-2289 .cs-content {
                padding-right: 3.25rem;
                padding-bottom: 6.75rem;
            }

            #sbsr-2289 .cs-image-group {
                height: auto;
                min-height: 40.125rem;
                max-height: 100%;
                order: initial;
                flex: 1;
            }

            #sbsr-2289 .cs-main-image {
                height: 30rem;
                max-height: none;
            }

            #sbsr-2289 .cs-thumbnail {
                width: 6rem;
                height: 6rem;
            }

            #sbsr-2289 .cs-thumbnails {
                gap: 0.75rem;
            }
        }