/* Shared styles for frontend and editor */
        .services-grid-section,
        .services-grid-editor {
            padding: 80px 0;
        }

        .services-grid-content {
            display: flex;
            gap: 15px;
            max-width: 1400px;
            justify-content: center;
            align-items: stretch;
            flex-wrap: wrap;
            margin: 0 auto;
        }

        .services-left,
        .services-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .services-left {
            width: calc(50% - 30px);
        }

        .services-right {
            width: max-content;
            text-align: right;
        }

        @media (max-width: 900px) {
            .services-left,
            .services-right,
            .services-middle,
            .services-grid-section .container .services-grid-content .services-middle {
                width: 80%;
                min-width: unset;
                aspect-ratio: unset;
                max-height: unset;
                max-width: unset;
            }

        /*    .services-left and .services-right swap positions */
            .services-left {
                order: 3;
            }

            .services-middle {
                order: 2;
                height: 400px;
                width: 100% !important;
            }

            .services-info {
                text-align: center;
            }
        }

        .arrow-icon {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: var(--color-green-dark-300);
            border-radius: 50%;
            color: white;
            position: absolute;
            top: 0;
            right: 0;
        }

        .arrow-icon i {
            transform: rotate(45deg);
        }

        .services-middle {
            width: calc(50% - 30px);
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: stretch;
            justify-content: center;
        }

        .services-middle .services-image {
            width: 100%;
            height: 100%;
        }

        .services-middle .services-image img {
            width: 100%;
            height: 100%;
            position: absolute;
            object-fit: cover;
            object-position: center;
        }

        .services-middle .image-placeholder {
            width: 100%;
            height: 100%;
            aspect-ratio: 2 / 3;
            background: #f0f0f0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            border: 2px dashed #ccc;
        }

        .service-item:hover {
            cursor: pointer;
            background-color: var(--color-green-light-100);
        }

        .service-header {
            padding-left: 30px;
            display: flex;
            flex-direction: column;
            position: relative;
            gap: 12px;
        }

        .three-dots-icon {
            position: absolute;
            top: 0;
            left: 0;
            width: 18px;
            height: 18px;
        }

        .service-header h3 {
            flex: 1;
            margin: 0;
            font-size: 1.5rem;
            color: #2c3e50;
        }

        .service-header p {
            font-weight: 400;
            font-family: 'Satoshi', sans-serif;
            color: var(--color-gray-500);
        }

        .service-item {
            position: relative;
            display: block;
            text-decoration: none;
            color: inherit;
            padding: 20px 0 0 0;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .services-grid-editor .service-item {
            position: relative;
        }

        .services-grid-editor .services-left .service-item:not(:last-child):after,
        .services-left .service-item:not(:last-child):after {
            content: "";
            width: 100%;
            height: 1px;
            border-bottom: 1px solid var(--color-gray-400);
            position: absolute;
            bottom: 0;
            margin-bottom: -8px;
        }

        .services-grid-editor .three-dots-icon,
        .three-dots-icon {
            position: absolute;
            top: 6px;
            left: 0;
            width: 18px;
            height: 18px;
        }

        .services-grid-editor .arrow-icon,
        .arrow-icon {
            margin-top: 20px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: var(--color-green-dark-300);
            border-radius: 50%;
            color: white;
            position: absolute;
            top: 0;
            right: 0;
        }

        .services-grid-editor .arrow-icon i,
        .arrow-icon i {
            transform: rotate(45deg);
        }

        .services-grid-editor .service-item:hover,
        .service-item:hover {
            cursor: pointer;
            background-color: var(--color-green-light-100);
        }

        .image-placeholder {
            width: 100%;
            height: 250px;
            background: #f0f0f0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            border: 2px dashed #ccc;
        }

        .services-info h2 {
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .services-info p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .cta-button {
            display: inline-block;
            background: var(--color-green-primary);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s ease;
        }

        .cta-button:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .services-inner-blocks {
            margin-top: 60px;
        }

        @media (max-width: 768px) {
            .services-info h2 {
                font-size: 1.8rem;
            }

            .services-grid-section,
            .services-grid-editor {
                padding: 60px 0;
            }
        }