        
        /* ========== 独享CSS部分 - 服务页面 ========== */
        
        /* 服务页面头部 */
        .services-header {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .services-header:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            opacity: 0.05;
            clip-path: polygon(100% 0, 0% 100%, 100% 100%);
        }
        
        .services-header h1 {
            font-size: 3.5rem;
            color: var(--dark);
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .services-header h1 span {
            color: var(--primary);
        }
        
        .services-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 30px;
            position: relative;
            z-index: 2;
        }
        
        /* 服务分类导航 - 修复：与顶部导航相接 */
        .services-nav {
            background-color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 70px; /* 改为70px，与顶部导航高度匹配 */
            z-index: 998;
            border-top: 1px solid var(--light-gray);
        }
        
        .services-nav-list {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .services-nav-list a {
            padding: 10px 20px;
            border-radius: 30px;
            background-color: var(--light-gray);
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
        }
        
        .services-nav-list a:hover,
        .services-nav-list a.active {
            background-color: var(--primary);
            color: white;
        }
        
        /* 服务大类板块 */
        .service-category {
            padding: 100px 0;
            position: relative;
        }
        
        .service-category:nth-child(odd) {
            background-color: var(--light);
        }
        
        .service-category:nth-child(even) {
            background-color: white;
        }
        
        .category-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .category-icon {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 2.5rem;
            border-radius: 20px;
            margin: 0 auto 25px;
        }
        
        .category-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .category-header p {
            max-width: 800px;
            margin: 0 auto;
            color: var(--gray);
            font-size: 1.1rem;
        }
        
        /* 服务子类网格 */
        .services-subgrid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-subcard {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            height: 100%;
        }
        
        .service-subcard:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .service-subheader {
            padding: 25px 25px 15px;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 168, 232, 0.05));
            border-bottom: 1px solid var(--light-gray);
        }
        
        .service-subheader h3 {
            color: var(--dark);
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .service-subheader p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        .service-subcontent {
            padding: 25px;
        }
        
        .service-subcontent h4 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .service-subcontent h4 i {
            margin-right: 8px;
            font-size: 1rem;
        }
        
        .info-list {
            margin-bottom: 20px;
        }
        
        .info-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--dark);
        }
        
        .info-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        
        .process-steps {
            counter-reset: step-counter;
            margin-bottom: 20px;
        }
        
        .process-step-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--dark);
        }
        
        .process-step-item:before {
            counter-increment: step-counter;
            content: counter(step-counter);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            flex-shrink: 0;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .service-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }
        
        .service-time {
            display: flex;
            align-items: center;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .service-time i {
            margin-right: 5px;
            color: var(--accent);
        }
        
        .service-price {
            display: inline-block;
            background-color: rgba(255, 107, 53, 0.1);
            color: var(--accent);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            border: 1px solid rgba(255, 107, 53, 0.2);
            font-size: 1rem;
        }
        
        /* 服务流程时间线 */
        .service-timeline {
            position: relative;
            max-width: 800px;
            margin: 60px auto 0;
        }
        
        .timeline-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background-color: var(--light-gray);
            z-index: 1;
        }
        
        .timeline-items {
            position: relative;
            z-index: 2;
        }
        
        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .timeline-dot {
            width: 20px;
            height: 20px;
            background-color: var(--primary);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--primary);
            flex-shrink: 0;
            position: relative;
            z-index: 3;
        }
        
        .timeline-content {
            width: 45%;
            padding: 20px;
            background-color: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        
        .timeline-content h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .timeline-content p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* CTA区域 */
        .services-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .services-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .services-cta p {
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .services-cta .btn {
            background-color: white;
            color: var(--primary);
        }
        
        .services-cta .btn:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
        }
        
        /* 动画效果 */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ========== 响应式设计 ========== */
        @media (max-width: 992px) {
            .services-header h1 {
                font-size: 2.8rem;
            }
            
            .category-header h2 {
                font-size: 2.2rem;
            }
            
            .timeline-item {
                flex-direction: column !important;
                align-items: flex-start;
                margin-left: 40px;
            }
            
            .timeline-line {
                left: 20px;
            }
            
            .timeline-dot {
                position: absolute;
                left: -40px;
                top: 0;
            }
            
            .timeline-content {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
                z-index: 999;
            }
            
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-menu li {
                margin: 0 0 15px 0;
            }
            
            /* 移动端调整服务导航位置 */
            .services-nav {
                top: 70px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .services-header {
                padding: 80px 0 60px;
            }
            
            .services-header h1 {
                font-size: 2.2rem;
            }
            
            .services-nav-list {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .services-nav-list a {
                white-space: nowrap;
            }
            
            .service-category {
                padding: 60px 0;
            }
            
            .category-header h2 {
                font-size: 1.8rem;
            }
            
            .services-subgrid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .services-header h1 {
                font-size: 1.8rem;
            }
            
            .services-header p {
                font-size: 1rem;
            }
            
            .category-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .service-subheader h3 {
                font-size: 1.3rem;
            }
            
            .service-details {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .service-time {
                margin-bottom: 15px;
            }
            
            .services-cta h2 {
                font-size: 1.8rem;
            }
            
            /* 移动端调整电话链接 */
            .phone-link {
                min-width: 160px;
                padding: 10px 20px;
                font-size: 0.95rem;
            }
            
            /* 移动端调整服务导航位置 */
            .services-nav {
                top: 60px;
            }
        }
        
        /* 修复记账服务及后面服务的CSS问题 */
        /* 确保所有服务卡片样式一致 */
        #accounting-services .service-subcard,
        #annual-report .service-subcard,
        #audit-services .service-subcard {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--light-gray);
            height: 100%;
        }
        
        #accounting-services .service-subcard:hover,
        #annual-report .service-subcard:hover,
        #audit-services .service-subcard:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        /* 确保服务类别背景色交替正确 */
        #accounting-services {
            background-color: var(--light);
        }
        
        #annual-report {
            background-color: white;
        }
        
        #audit-services {
            background-color: var(--light);
        }