 /* Main wrapper allows background to extend full width */
        .cleanpro-section-wrapper {
            width: 100%;
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            padding: 60px 20px;
            overflow: hidden;
        }

        /* Content container limited to max-width */
        .cleanpro-about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .cleanpro-content-left {
            flex: 1;
            max-width: 550px;
        }

        .cleanpro-label-tag {
            color: #247427;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
font-family: Mont-Heavy;
            display: inline-block;
        }

        .cleanpro-main-heading {
            font-size: 42px;
            font-weight: 700;
            color: #4caf50;
            line-height: 1.2;
            margin-bottom: 25px;
font-family: Mont-Heavy;
        }

        .cleanpro-intro-text {
            font-size: 16px;
            color: #4caf50;
            margin-bottom: 20px;
            line-height: 1.7;
font-family: fonts/DefaultSans;
font-weight: 600;
        }

        .cleanpro-description-text {
            font-size: 15px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
font-family: DefaultSans;
        }

        .cleanpro-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px 30px;
            margin-bottom: 35px;
        }

        .cleanpro-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cleanpro-check-icon {
            width: 22px;
            height: 22px;
            background: #247427;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cleanpro-check-icon i {
            color: white;
            font-size: 11px;
        }

        .cleanpro-feature-text {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a2e;
font-family: DefaultSans;
        }

        .cleanpro-cta-section {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .cleanpro-discover-btn {
            background: #247427;
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
font-family: Mont-Heavy;
        }

        .cleanpro-discover-btn:hover {
            background: #0d4ae0;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 94, 255, 0.3);
        }

        .cleanpro-phone-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
font-family: Mont-Heavy;
        }

        .cleanpro-phone-icon-circle {
            width: 50px;
            height: 50px;
            background: #247427;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
border: solid 7px #247426;
        }

        .cleanpro-phone-icon-circle:hover {
            background: #1e5eff;
        }

        .cleanpro-phone-icon-circle:hover i {
            color: white;
        }

        .cleanpro-phone-icon-circle i {
            color: #1e5eff;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .cleanpro-phone-number {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a2e;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .cleanpro-phone-number:hover {
            color: #1e5eff;
        }

        /* Right side - Image section */
        .cleanpro-image-right {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
border-radius: 50px;
        }

        .cleanpro-image-holder {
            position: relative;
            z-index: 2;
border-radius: 50px;
        }

        .cleanpro-image-holder img {
            max-width: 100%;
            height: auto;
            display: block;
border-radius: 50px;
        }

        /* Decorative curved lines */
        .cleanpro-deco-arc-large {
            position: absolute;
            width: 400px;
            height: 400px;
            border: 4px solid transparent;
            border-right-color: #1e5eff;
            border-radius: 50%;
            right: -50px;
            top: 50%;
            transform: translateY(-50%) rotate(-20deg);
            z-index: 1;
        }

        .cleanpro-deco-arc-small {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 3px solid transparent;
            border-left-color: #1e5eff;
            border-radius: 50%;
            right: 20px;
            bottom: 20px;
            z-index: 1;
        }

        .cleanpro-deco-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: #1e5eff;
            border-radius: 50%;
            right: 30px;
            bottom: 120px;
            z-index: 3;
        }

        /* Placeholder for the image */
        .cleanpro-placeholder-img {
            width: 400px;
            height: 450px;
            background: linear-gradient(145deg, #e8f0fe 0%, #c5d9f7 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #1e5eff;
        }

        .cleanpro-placeholder-img i {
            font-size: 80px;
            margin-bottom: 20px;
            opacity: 0.6;
        }

        .cleanpro-placeholder-img span {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .cleanpro-about-container {
                flex-direction: column;
                text-align: center;
            }

            .cleanpro-content-left {
                max-width: 100%;
                order: 2;
            }

            .cleanpro-image-right {
                order: 1;
                min-height: 400px;
                width: 100%;
            }

            .cleanpro-features-grid {
                justify-items: center;
            }

            .cleanpro-feature-item {
                justify-content: flex-start;
                width: 200px;
            }

            .cleanpro-cta-section {
                justify-content: center;
            }

            .cleanpro-main-heading {
                font-size: 36px;
            }

            .cleanpro-deco-arc-large {
                width: 300px;
                height: 300px;
                right: 0;
            }

            .cleanpro-deco-arc-small {
                width: 200px;
                height: 200px;
            }

            .cleanpro-placeholder-img {
                width: 320px;
                height: 380px;
            }
        }

        @media (max-width: 768px) {
            .cleanpro-section-wrapper {
                padding: 40px 15px;
            }

            .cleanpro-main-heading {
                font-size: 30px;
            }

            .cleanpro-features-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .cleanpro-feature-item {
                width: auto;
                justify-content: center;
            }

            .cleanpro-cta-section {
                flex-direction: column;
                gap: 20px;
            }

            .cleanpro-phone-number {
                font-size: 20px;
            }

            .cleanpro-image-right {
                min-height: 350px;
            }

            .cleanpro-placeholder-img {
                width: 280px;
                height: 340px;
            }

            .cleanpro-placeholder-img i {
                font-size: 60px;
            }

            .cleanpro-deco-arc-large {
                width: 250px;
                height: 250px;
            }

            .cleanpro-deco-arc-small {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .cleanpro-main-heading {
                font-size: 26px;
            }

            .cleanpro-intro-text,
            .cleanpro-description-text {
                font-size: 14px;
            }

            .cleanpro-feature-text {
                font-size: 14px;
            }

            .cleanpro-discover-btn {
                padding: 12px 28px;
                font-size: 13px;
            }

            .cleanpro-placeholder-img {
                width: 240px;
                height: 300px;
            }
        }