        .imp-x-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .imp-x-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .imp-x-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .imp-x-main-circle {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .imp-x-main-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .imp-x-small-circle {
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            overflow: hidden;
            bottom: -20px;
            right: -20px;
            border: 6px solid white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .imp-x-small-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .imp-x-content {
            padding-left: 40px;
        }

        .imp-x-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fdd70b52;
            color: rgba(40, 167, 69, 0.98);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .imp-x-count {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fdd70b52;
            color: rgba(40, 167, 69, 0.98);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .imp-x-badge::before {
            content: "🧡";
            font-size: 16px;
        }

        .imp-x-title {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
            line-height: 1.1;
            position: relative;
            overflow: inherit;
            /* opacity: 0; */
            /* hidden initially for GSAP to animate */
            height: 80px;
        }

        .shine-text::after {
            content: "";
            position: absolute;
            top: 0;
            left: -75%;
            width: 50%;
            height: 100%;
            background: linear-gradient(120deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.6) 50%,
                    rgba(255, 255, 255, 0) 100%);
            transform: skewX(-20deg);
            pointer-events: none;
        }


        .imp-x-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .imp-x-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        .imp-x-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .imp-x-feature-icon {
            width: 20px;
            height: 20px;
            background: rgba(40, 167, 69, 0.98);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .imp-x-feature-icon::after {
            content: "✓";
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .imp-x-feature-text {
            font-size: 1rem;
            color: #333;
            font-weight: 500;
        }

        .imp-x-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .imp-x-stat {
            text-align: center;
        }

        .imp-x-stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(40, 167, 69, 0.98);
            margin-bottom: 5px;
        }

        .imp-x-stat-label {
            font-size: 0.9rem;
            color: #666;
            font-weight: 500;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .imp-x-section {
                padding: 40px 15px;
            }

            .imp-x-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .imp-x-content {
                padding-left: 0;
            }

            .imp-x-main-circle {
                width: 280px;
                height: 280px;
            }

            .imp-x-small-circle {
                width: 120px;
                height: 120px;
                bottom: -15px;
                right: -15px;
            }

            .imp-x-title {
                font-size: 2.5rem;
            }

            .imp-x-features {
                grid-template-columns: 1fr;
                gap: 15px;
                text-align: left;
            }

            .imp-x-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .imp-x-stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .imp-x-main-circle {
                width: 240px;
                height: 240px;
            }

            .imp-x-small-circle {
                width: 100px;
                height: 100px;
                bottom: -10px;
                right: 40px;
            }

            .imp-x-title {
                font-size: 2rem;
            }

            .imp-x-stat-number {
                font-size: 2rem;
            }
        }