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

        @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

        body {
            font-family: "Open Sans", sans-serif;
            background-color: #fff;
        }

        /* Hero Section Styling */
        .hero-container {
            background: #f8f8f8;
            padding: 30px 20px 10px;
        }

        .green-circle {
            width: 60px;
            height: 60px;
            background: #42913f;
            border-radius: 50%;
            margin: 0 auto 8px;
        }

        .stat-item {
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 25%;
            height: 50%;
            width: 1px;
            background: #d1d5db;
        }

        /* Treatment Cards */
        .treatment-card {
            background: white;
            transition: all 0.3s ease;
            margin: 0px;
            position: relative;
        }

        .treatment-card:hover {
            transform: translateY(-8px);
        }

        .blue-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .treatment-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            border-radius: 12px;
            margin-top: 24px;
        }

        /* Progress Bar */
        .progress-container {
            width: 100%;
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            margin-top: 30px;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: #3b82f6;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        /* Owl Carousel Navigation */
        .owl-nav button {
            background: transparent !important;
            color: #3b82f6 !important;
            font-size: 32px !important;
            border: none !important;
            position: absolute !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
        }

        .owl-nav .owl-prev {
            left: -40px !important;
        }

        .owl-nav .owl-next {
            right: -40px !important;
        }

        .comparison-table {
            background: white;
            border-radius: 24px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .center-column {
            background: linear-gradient(180deg, #1e1a4b 0%, #2d2666 100%);
            /*transform: scaleY(1.08);*/
            z-index: 10;
            border-radius: 20px;
        }

        /* Treatment Process Circles */
        .process-circle {
            width: 192px;
            height: 192px;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        }

        .process-circle::after {
            content: '';
            position: absolute;
            inset: -4px;
            border: 6px dashed #bbf7d0;
            border-radius: 50%;
        }

        .process-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CTA Box */
        .cta-box {
            background: linear-gradient(135deg, #1e1a4b 0%, #2d2666 100%);
        }

        /* FAQ */
        .faq-item {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .faq-header {
            background: #f2fff1;
            padding: 16px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.2s;
        }

        .faq-header:hover {
            background: #f2fff1;
        }

        .faq-body {
            padding: 16px 20px;
            background: white;
            display: none;
        }

        .faq-body.active {
            display: block;
        }

        .faq-icon {
            color: #363636;
            font-size: 24px;
            font-weight: bold;
            transition: transform 0.3s;
        }

        center-column .faq-icon.rotate {
            transform: rotate(45deg);
        }

        .swiper-button-prev:after {
            display: none;
        }

        .swiper-button-next:after {
            display: none;
        }

        .bg-find {
            background: url(../images/find-clinic.png);
        }

        @media (max-width: 720px) {
            .treatment-img {
                height: 300px;
            }

            .owl-prev-btn,
            .owl-next-btn {
                position: relative;
                z-index: 50;
            }

            .owl-carousel .owl-stage-outer {
                position: relative;
                z-index: 10;
            }

            iframe {
                pointer-events: auto;
            }

            /* iOS fix: prevent buttons hidden behind iframe touch layer */
            .owl-prev-btn,
            .owl-next-btn {
                pointer-events: auto !important;
            }

            .Patients-next {
                bottom: -78px !important;
                top: unset !important;
                right: 120px !important;
            }


            .Patients-prew {
                bottom: -78px !important;
                top: unset !important;
                left: 120px !important;
            }

        }