
        .custom-services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Arial', sans-serif;
            color: #333;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            width: 80%;
            height: 4px;
            background-color: #e74c3c;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }

        .workflow {
            display: flex;
            justify-content: space-between;
            margin-bottom: 60px;
            position: relative;
        }

        .workflow::after {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            width: 80%;
            height: 2px;
            background-color: #bdc3c7;
            z-index: 1;
        }

        .workflow-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-icon {
            width: 100px;
            height: 100px;
            background-color: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            font-size: 2.5rem;
            color: #e74c3c;
            transition: all 0.3s ease;
        }

        .workflow-step:hover .step-icon {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }

        .step-title {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .workflow-arrow {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.5rem;
            color: #bdc3c7;
        }

        .customization-options {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }

        .custom-option {
            flex: 1;
            min-width: 200px;
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .custom-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }

        .option-title {
            font-weight: 600;
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e74c3c;
        }

        @media (max-width: 768px) {
            .workflow {
                flex-direction: column;
                align-items: center;
            }

            .workflow-step {
                margin-bottom: 40px;
                width: 80%;
            }

            .workflow::after {
                width: 2px;
                height: 80%;
                top: 10%;
                left: 50%;
            }

            .workflow-arrow {
                transform: rotate(90deg) translateX(-50%);
                top: 100px;
            }
        }

        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .step-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .workflow-step {
                margin-bottom: 30px;
                width: 95%;
            }
            
            .step-title {
                font-size: 1rem;
            }
            
            .custom-option {
                min-width: 100%;
                padding: 15px;
            }
            
            .option-title {
                font-size: 1.1rem;
            }
            
            .workflow-arrow {
                font-size: 1.2rem;
                top: 80px;
            }
        }
    