   
        
        /* 按钮样式修复 */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            background: #2980b9;
        }
        
        /* 页面横幅 */
        .page-banner {
            height: 400px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/template/jia/images/12.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
            margin-bottom: 60px;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .banner-content {
            max-width: 700px;
            padding: 0 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }
        
        .banner-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .banner-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 业务板块 */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: var(--primary);
        }
        
        .section-title p {
            color: #777;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(50px);
        }
        
        .service-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
        }
        
        .service-reg .service-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
        }
        
        .service-accounting .service-icon {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
        }
        
        .service-other .service-icon {
            background: linear-gradient(135deg, var(--accent), var(--secondary));
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .service-content ul {
            list-style: none;
            margin: 15px 0;
        }
        
        .service-content li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
            transition: var(--transition);
            transform-origin: left;
        }
        
        .service-content li:hover {
            transform: scale(1.05);
            background: #f9f9f9;
            padding-left: 10px;
        }
        
        .service-content .price {
            color: var(--primary);
            font-weight: 600;
        }
        
        .service-content .more {
            display: inline-block;
            margin-top: 15px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .service-content .more:hover {
            color: var(--accent);
        }
        
        /* 注册流程 - 修复布局 */
        .process {
            margin-bottom: 60px;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px 20px;
            counter-reset: step;
        }
        
        .step {
            background: white;
            padding: 30px 20px;
            border-radius: 15px;
            text-align: center;
            position: relative;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            min-height: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .step.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            z-index: 2;
            animation: pulse 2s infinite;
        }
        
        .step i {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .step h3 {
            margin: 15px 0;
            color: var(--dark);
            font-size: 1.3rem;
        }
        
        .step p {
            color: #777;
        }
        
        /* 脉冲动画 */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
            }
        }
        
        /* 所需材料 */
        .materials {
            background: linear-gradient(135deg, #f6f9fc, #eef2f7);
            padding: 60px 0;
            margin-bottom: 60px;
            border-radius: 15px;
        }
        
        .materials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .material-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
        }
        
        .material-card.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .material-card:hover {
            transform: translateY(-5px);
        }
        
        .material-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        
        .material-card ul {
            list-style: none;
        }
        
        .material-card li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            align-items: center;
        }
        
        .material-card li i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        /* 常见问题 */
        .faq {
            margin-bottom: 60px;
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .faq-item.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: #f9f9f9;
        }
        
        .faq-question i {
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 300px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
    
        /* 响应式设计 */
        @media (max-width: 992px) {
            .materials-container {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .banner-content h1 {
                font-size: 2rem;
            }
            
            .banner-content p {
                font-size: 1rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .step {
                min-height: auto;
            }
        }