        .workprocess-section {
            background: #f5f1e8;
            padding: 80px 0;
            position: relative;
        }

        .workprocess-section .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .workprocess-section .badge-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: #000;
            border: 1px solid #ddd;
            border-radius: 50px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .workprocess-section .badge-tag .dot {
            width: 8px;
            height: 8px;
            background: #d31480;
            border-radius: 50%;
        }

        .workprocess-section .section-title {
            color: #371c46;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.3;
            max-width: 700px;
            margin: 0 auto;
        }

        .workprocess-section .steps-container {
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .workprocess-section .step-item {
            text-align: center;
            max-width: 350px;
            position: relative;
        }

        .workprocess-section .step-item.step-center {
            margin-top: 80px;
        }

        .workprocess-section .step-image-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }

        .workprocess-section .step-image {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            overflow: hidden;
            border: 8px solid #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .workprocess-section .step-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .workprocess-section .step-number {
            position: absolute;
            bottom: -10px;
            right: 20px;
            background: #d31480;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .workprocess-section .step-title {
            color: #371c46;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .workprocess-section .step-description {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }

        .workprocess-section .dashed-line {
            position: absolute;
            top: 140px;
            width: 100%;
            height: 2px;
            background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 10px, transparent 10px, transparent 20px);
            z-index: 0;
        }

        .workprocess-section .step-item {
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1199px) {
            .workprocess-section .steps-container {
                flex-direction: column;
                align-items: center;
                gap: 60px;
            }

            .workprocess-section .step-item.step-center {
                margin-top: 0;
            }

            .workprocess-section .dashed-line {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .workprocess-section .section-title {
                font-size: 32px;
            }

            .workprocess-section .step-image {
                width: 220px;
                height: 220px;
            }

            .workprocess-section .step-number {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .workprocess-section {
                padding: 50px 0;
            }
        }
