        /* Owl Carousel Navigation Styles */
        .owl-carousel .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            margin-top: 0;
        }

        /* For desktop - keep nav buttons at top right */
        @media (min-width: 768px) {
            .owl-carousel .owl-nav {
                position: absolute;
                top: -80px;
                right: 0;
                width: auto;
                transform: none;
                justify-content: flex-end;
            }
        }

        .owl-carousel .owl-nav button {
            background: #298AAB !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            margin: 0 5px !important;
            position: relative;
        }

        /* Position arrows on sides for mobile */
        @media (max-width: 767px) {
            .owl-carousel .owl-nav button {
                position: absolute;
                margin: 0 !important;
            }

            .owl-carousel .owl-nav button.owl-prev {
                left: -40px;
            }

            .owl-carousel .owl-nav button.owl-next {
                right: 15px;
            }
        }

        .owl-carousel .owl-nav button span {
            font-size: 24px;
            line-height: 1;
            display: block;
            position: relative;
            top: -2px;
        }

        .owl-carousel .owl-dots {
            margin-top: 20px;
        }

        .owl-carousel .owl-dots button.owl-dot span {
            background: #298AAB;
            opacity: 0.3;
        }

        .owl-carousel .owl-dots button.owl-dot.active span {
            opacity: 1;
        }

        /* Make sure carousel doesn't overlap with arrows on mobile */
        @media (max-width: 767px) {
            .providers-carousel {
                padding: 0 30px;
            }
        }
