      /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-banner::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.05)"/></svg>');
            background-size: cover;
        }
        
        .page-banner h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            animation: fadeInUp 1s ease;
        }
        
        .page-banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* 特色服务标签 */
        .feature-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary) 0%, #e6c44b 100%);
            color: var(--dark);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            margin-top: 25px;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            animation: pulse 2s infinite;
            position: relative;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }
        
        /* 业务展示区 */
        .services {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 15px auto 0;
        }
        
        .service-category {
            margin-bottom: 60px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .service-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .category-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            padding: 20px 30px;
            display: flex;
            align-items: center;
        }
        
        .category-header h3 {
            font-size: 1.8rem;
            margin-right: 20px;
        }
        
        .category-header-icon {
            font-size: 2rem;
            margin-right: 15px;
            color: var(--secondary);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 0;
        }
        
        .service-cell {
            padding: 25px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            border-right: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .service-cell:nth-child(3n) {
            border-right: none;
        }
        
        .service-cell:nth-last-child(-n+3) {
            border-bottom: none;
        }
        
        .service-cell:hover {
            background-color: #f9f9f9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            z-index: 1;
        }
        
        .service-cell h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .service-cell p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .service-price {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 15px;
        }
        
        .service-features li {
            padding: 3px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
        }
        
        .service-features li i {
            color: var(--secondary);
            margin-right: 5px;
            font-size: 0.7rem;
        }
        
        .policy-badge {
            display: inline-block;
            background-color: var(--success);
            color: white;
            font-size: 0.75rem;
            padding: 3px 10px;
            border-radius: 20px;
            margin-top: 10px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-5px);
            }
            60% {
                transform: translateY(-3px);
            }
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }
        
        .btn-outline:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        /* 公司注册流程样式 */
        .process-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
            flex-wrap: wrap;
        }
        
        /* 连接线 */
        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            min-width: 160px;
        }
        
        .step-icon {
            width: 120px;
            height: 120px;
            background: white;
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: var(--primary);
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(10, 36, 99, 0.15);
        }
        
        .step:hover .step-icon {
            transform: translateY(-5px);
            background-color: var(--primary);
            color: white;
            border-color: var(--secondary);
        }
        
        .step-content {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            margin-top: 10px;
        }
        
        .step:hover .step-content {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .step-content h3 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        
        .step-content p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .step-duration {
            display: inline-block;
            margin-top: 12px;
            padding: 5px 12px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        /* 时间线箭头 */
        .step-arrow {
            position: absolute;
            top: 60px;
            right: -20px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 20px solid var(--primary);
            z-index: 2;
        }
        
        /* 流程优势 */
        .process-advantages {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 60px;
        }
        
        .process-advantage-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: var(--transition);
        }
        
        .process-advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .process-advantage-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* CTA区域 */
        .cta-section {
            text-align: center;
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            margin-top: 40px;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::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.05)"/></svg>');
            background-size: cover;
        }
        
        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            position: relative;
        }
        
        .btn-large {
            display: inline-block;
            padding: 14px 35px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }
        
        .btn-large:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* 小贴士 */
        .process-tips {
            background-color: #fff9e6;
            border-left: 4px solid var(--secondary);
            padding: 25px;
            border-radius: 8px;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .process-tips::before {
            content: '\f0eb';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 10rem;
            opacity: 0.05;
            color: var(--secondary);
            z-index: 0;
        }
        
        .process-tips h3 {
            color: var(--dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .process-tips h3 i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .process-tips ul {
            list-style: none;
            padding-left: 0;
            position: relative;
        }
        
        .process-tips li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }
        
        .process-tips li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                width: 100%;
                max-width: 400px;
                margin-bottom: 40px;
            }
            
            .step-arrow {
                display: none;
            }
            
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-cell {
                border-right: none;
                border-bottom: 1px solid #eee;
            }
            
            .service-cell:last-child {
                border-bottom: none;
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .category-header h3 {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .step-icon {
                width: 100px;
                height: 100px;
                font-size: 2rem;
            }
            
            .step-content {
                padding: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .page-banner {
                padding: 60px 0;
            }
            
            .page-banner h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
        }