   
        /* 轮播图 */
        .hero-slider {
            position: relative;
            height: 500px;
            overflow: hidden;
        }
        
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
        }
        
        .slide.active {
            opacity: 1;
        }
        
        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.5));
        }
        
        .slide-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            padding: 0 50px;
            animation: slideIn 1s ease;
        }
        
        @keyframes slideIn {
            from {
                transform: translateX(-50px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }
        
        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .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);
        }
        
        .slider-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);;
            display: flex;
            z-index: 2;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .slider-dot.active {
            background-color: var(--secondary);
            transform: scale(1.3);
        }
        
        /* 业务展示区 */
        .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);
        }
        
        .service-category {
            margin-bottom: 60px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .category-header {
            background-color: var(--primary);
            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-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .services-table tr {
            border-bottom: 1px solid #eee;
        }
        
        .services-table tr:last-child {
            border-bottom: none;
        }
        
        .service-cell {
            padding: 20px;
            text-align: center;
            transition: var(--transition);
            position: relative;
        }
        
        .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;
        }
        
        /* 公司注册流程样式 */
        .process-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .process-section .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .process-section .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        
        .process-section .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 15px auto 0;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
        }
        
        /* 连接线 */
        .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;
        }
        
        .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-color: var(--primary);
            color: white;
            margin-top: 40px;
            border-radius: 10px;
        }
        
        .cta-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .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;
        }
        
        .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;
        }
        
        .process-tips h3 {
            color: var(--dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .process-tips h3 i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .process-tips ul {
            list-style: none;
            padding-left: 0;
        }
        
        .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;
            }
            
            .slide-content h2 {
                font-size: 2rem;
            }
            
            .process-connector {
                display: none;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .services-table {
                display: block;
                overflow-x: auto;
            }
            
            .services-table tr {
                display: flex;
                flex-direction: column;
                margin-bottom: 20px;
                border: 1px solid #eee;
                border-radius: 8px;
            }
            
            .service-cell {
                border-bottom: 1px solid #eee;
            }
            
            .service-cell:last-child {
                border-bottom: none;
            }
        }
        
        /* 服务流程 */
        .process {
            padding: 80px 0;
        }
        
        .simple-process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .simple-step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 0 20px;
            position: relative;
            margin-bottom: 30px;
        }
        
        .simple-step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }
        
        .simple-step:nth-child(even) .simple-step-icon {
            background-color: var(--secondary);
        }
        
        .simple-step-content h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .process-connector {
            position: absolute;
            top: 40px;
            right: -10px;
            width: 60%;
            height: 2px;
            background-color: #ddd;
            z-index: 0;
        }
        
        .simple-step:last-child .process-connector {
            display: none;
        }
        
        /* 优势部分 */
        .advantages {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .advantage-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* 关于我们 */
        .about {
            padding: 80px 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .about-text h2 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-stats {
            display: flex;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .stat {
            flex: 1;
            min-width: 150px;
            text-align: center;
            padding: 20px;
            background-color: var(--primary);
            color: white;
            margin: 10px;
            border-radius: 10px;
        }
        
        .stat h3 {
            font-size: 2rem;
            margin-bottom: 5px;
        }
        
        /* 知识库 */
        .knowledge {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.1);
        }
        
        .article-content {
            padding: 20px;
        }
        
        .article-content h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .article-meta {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.9rem;
            margin-top: 15px;
        }
        
        
        @media (max-width: 768px) {
            .hero-slider {
                height: 400px;
            }
            
            .slide-content {
                padding: 0 20px;
            }
            
            .slide-content h2 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            

        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .hero-slider {
                height: 350px;
            }
            
            .slide-content h2 {
                font-size: 1.5rem;
            }
            
            .slide-content p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .category-header {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .category-header h3 {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }