  /* Work Strategy Diagram */
        .strategy-diagram-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            position: relative;
        }

        .strategy-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        /* Process Wrapper */
        .process-wrapper {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .process-step .icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            border-radius: 50%;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            transition: transform 0.3s ease;
        }

        .process-step .icon:hover {
            transform: scale(1.1);
        }

        .process-step h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #2d3748;
        }

        .process-step p {
            margin: 0;
            font-size: 0.95rem;
            color: #666;
        }

        /* Connecting Line */
        .process-line {
            height: 40px;
            border-left: 2px dashed #667eea;
            margin: 0 25px 40px;
            position: relative;
            left: 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .process-step {
                flex-direction: column;
                align-items: flex-start;
            }

            .process-line {
                left: 0;
                margin-left: 0;
            }

            .strategy-image {
                text-align: center;
            }

            .strategy-image img {
                max-width: 80%;
                margin: 0 auto;
            }
        }

        /* Float animation (reuse from previous section) */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }
        }