        /* 定制服务页面专项样式 */
        .custom-hero {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .custom-hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .custom-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .custom-hero .subtitle {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #bfdbfe;
        }

        .custom-hero .description {
            font-size: 1.1rem;
            color: #dbeafe;
        }

        /* 定制服务类型 */
        .service-types-section {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .service-types-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #6b7280;
        }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: white;
        }

        .service-icon.blue {
            background: #3b82f6;
        }

        .service-icon.green {
            background: #10b981;
        }

        .service-icon.purple {
            background: #a855f7;
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
            text-align: center;
        }

        .service-card p {
            color: #6b7280;
            margin-bottom: 20px;
            text-align: center;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            padding: 8px 0;
            color: #6b7280;
            font-size: 0.95rem;
        }

        .service-features li:before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .service-card.blue .service-features li:before {
            background: #3b82f6;
        }

        .service-card.green .service-features li:before {
            background: #10b981;
        }

        .service-card.purple .service-features li:before {
            background: #a855f7;
        }

        /* 定制流程 */
        .process-section {
            padding: 80px 20px;
            background: white;
        }

        .process-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-timeline {
            position: relative;
            padding: 40px 0;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #3b82f6, #a855f7);
        }

        @media (max-width: 768px) {
            .process-timeline::before {
                left: 30px;
            }
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
            align-items: center;
        }

        .process-step:nth-child(even) {
            direction: rtl;
        }

        .process-step:nth-child(even) > * {
            direction: ltr;
        }

        @media (max-width: 768px) {
            .process-step,
            .process-step:nth-child(even) {
                grid-template-columns: auto 1fr;
                gap: 20px;
                direction: ltr;
            }

            .process-step > * {
                direction: ltr;
            }
        }

        .process-marker {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.5rem;
            flex-shrink: 0;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .process-step:nth-child(1) .process-marker {
            background: #3b82f6;
        }

        .process-step:nth-child(2) .process-marker {
            background: #10b981;
        }

        .process-step:nth-child(3) .process-marker {
            background: #a855f7;
        }

        .process-step:nth-child(4) .process-marker {
            background: #f59e0b;
        }

        .process-content-box {
            padding: 20px;
        }

        .process-content-box h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .process-content-box p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* 优势介绍 */
        .advantages-section {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .advantages-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .advantage-item {
            text-align: center;
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
        }

        .advantage-item:nth-child(1) .advantage-icon {
            background: #3b82f6;
        }

        .advantage-item:nth-child(2) .advantage-icon {
            background: #10b981;
        }

        .advantage-item:nth-child(3) .advantage-icon {
            background: #a855f7;
        }

        .advantage-item:nth-child(4) .advantage-icon {
            background: #f59e0b;
        }

        .advantage-icon svg {
            width: 40px;
            height: 40px;
        }

        .advantage-item h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .advantage-item p {
            color: #6b7280;
        }

        /* 表单区域 */
        .form-section {
            padding: 80px 20px;
            background: white;
        }

        .form-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .form-card {
            background: white;
            border-radius: 12px;
            padding: 50px 40px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-group label {
            display: block;
            font-size: 0.95rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 10px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .required::after {
            content: ' *';
            color: #ef4444;
        }

        .form-submit {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            color: white;
            padding: 16px 48px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .message {
            margin-bottom: 20px;
            padding: 16px 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            display: none;
        }

        .message.show {
            display: block;
        }

        .message.success {
            background: #d1fae5;
            color: #065f46;
            border: 1px solid #a7f3d0;
        }

        .message.error {
            background: #fee2e2;
            color: #7f1d1d;
            border: 1px solid #fecaca;
        }

        @media (max-width: 768px) {
            .custom-hero h1 {
                font-size: 2rem;
            }

            .custom-hero .subtitle {
                font-size: 1.2rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }

            .form-card {
                padding: 30px 20px;
            }
        }
