   .trust-indicator {
            text-align: center;
            margin-bottom: 32px;
        }

        .trust-text {
            color: #1d78d5;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .main-heading {
            text-align: center;
            margin-bottom: 64px;
        }

        .main-title {
            font-size: clamp(2.5rem, 5vw, 4rem) !important;
            font-weight: bold !important;
            color: #000000;
            margin-bottom: 32px !important;
            text-align: center;
        }

        .carousel-container {
            position: relative;
            margin-bottom: 48px;
        }

        .carousel-content {
            display: grid;
            grid-template-columns: 1fr 400px 1fr;
            gap: 32px;
            align-items: center;
            opacity: 1;
            transition: opacity 0.3s ease-in-out;
        }

        .carousel-content.fade-out {
            opacity: 0;
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background-color: #1d78d5;
            border: none;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .nav-arrow:focus {
            outline: 2px solid #1d78d5;
            outline-offset: 2px;
        }

        .nav-arrow:hover {
            background-color: #1565c0;
            transform: translateY(-50%) scale(1.05);
        }

        .nav-arrow.prev {
            left: -24px;
        }

        .nav-arrow.next {
            right: -24px;
            z-index: 999;
        }

        .features-left, .features-right {
            display: flex;
            flex-direction: column;
            gap: 64px;
        }

        .feature {
            transition: transform 0.3s ease;
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature-left {
            text-align: right;
        }

        .feature-right {
            text-align: left;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            /* background-color: #f0f0f0; */
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .feature-icon img {
            width: 80%;
            height: 80%;
            object-fit: contain;
        }

        .feature-left .feature-icon {
            margin-left: auto;
        }

        .feature-right .feature-icon {
            margin-right: auto;
        }

        .feature-title {
            font-size: 20px;
            font-weight: bold;
            color: #000000;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .feature-description {
            color: #73757b;
            font-size: 14px;
            line-height: 1.5;
            max-width: 280px;
        }

        .feature-left .feature-description {
            margin-left: auto;
        }

        .feature-right .feature-description {
            margin-right: auto;
        }

        .product-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .product-image {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 8px;
        }

        .product-image:hover {
            transform: scale(1.03);
        }

        .cta-section {
            text-align: center;
            margin-top: 32px;
        }

        .enquire-btn {
            background-color: transparent;
            border: 1px solid #73757b;
            color: #000000;
            padding: 12px 32px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .enquire-btn:focus {
            outline: 2px solid #1d78d5;
            outline-offset: 2px;
        }

        .enquire-btn:hover {
            background-color: #1d78d5;
            color: white;
            border-color: #1d78d5;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #a0a1a8;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator:hover {
            transform: scale(1.2);
        }

        .indicator.active {
            background-color: #1d78d5;
            transform: scale(1.2);
        }

        @media (max-width: 1024px) {
            .carousel-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .nav-arrow {
                display: none;
            }

            .feature-left, .feature-right {
                text-align: center;
            }

            .feature-left .feature-icon,
            .feature-right .feature-icon {
                margin: 0 auto 16px auto;
            }

            .feature-left .feature-description,
            .feature-right .feature-description {
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .features-left, .features-right {
                gap: 32px;
            }
            
            .product-image-container {
                padding: 10px;
            }
        }

        /* Focus styles for accessibility */
        [tabindex]:focus-visible {
            outline: 2px solid #1d78d5;
            outline-offset: 2px;
        }