       
        /* ===== 服务页面独享CSS ===== */
        
        /* 页面标题区域 */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }
        
        .page-header:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
            background-size: cover;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        /* 服务分类导航 */
        .service-categories {
            padding: 40px 0;
            background-color: var(--light-color);
            position: sticky;
            top: 70px;
            z-index: 99;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .category-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .category-btn {
            padding: 10px 25px;
            background: white;
            border: 2px solid transparent;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        
        .category-btn:hover, .category-btn.active {
            background: var(--gradient);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
        }
        
        /* 服务详情区域 */
        .services-detail {
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            border-radius: 12px 12px 0 0;
        }
        
        .service-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-header {
            padding: 30px 30px 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .service-header h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 800;
        }
        
        .service-price {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .service-duration {
            display: flex;
            align-items: center;
            color: #666;
            font-weight: 600;
        }
        
        .service-duration i {
            margin-right: 10px;
            color: var(--accent-color);
        }
        
        .service-content {
            padding: 25px 30px;
        }
        
        .info-section {
            margin-bottom: 25px;
        }
        
        .info-section h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .info-section h3 i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .info-section ul {
            list-style: none;
            padding-left: 10px;
        }
        
        .info-section ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .info-section ul li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: rgba(26, 115, 232, 0.05);
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .process-step:hover {
            background: rgba(26, 115, 232, 0.1);
            transform: translateX(5px);
        }
        
        .step-number {
            width: 30px;
            height: 30px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .service-actions {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }
        
        .btn-alt {
            background: var(--gradient-alt);
            box-shadow: 0 4px 15px rgba(251, 188, 5, 0.3);
        }
        
        .btn-alt:hover {
            box-shadow: 0 6px 20px rgba(251, 188, 5, 0.4);
        }
        
		
        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            
            nav.active {
                max-height: 300px;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px 0;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .service-header h2 {
                font-size: 1.5rem;
            }
            
            .category-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .service-actions {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .phone-number {
                font-size: 0.9rem;
                padding: 6px 12px;
            }
        }