  
        /* 英雄区域 */
        .hero {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('/template/jia/images/1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }
        
        .hero .btn {
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }
        
        /* 服务概览 */
        .service-overview {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .overview-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .overview-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .overview-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .overview-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .overview-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .overview-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* 办理时限 */
        .time-limit {
            padding: 80px 0;
            background-color: white;
        }
        
        .time-content {
            background: linear-gradient(to right, var(--primary) 50%, var(--accent) 50%);
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .time-info {
            flex: 1;
            padding: 50px;
            color: white;
            background: var(--primary);
        }
        
        .time-scale {
            flex: 1;
            padding: 50px;
            background: var(--accent);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .time-scale .time-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .process-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            margin: 30px 0;
            overflow: hidden;
            position: relative;
        }
        
        .process-fill {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: var(--secondary);
            border-radius: 4px;
            transition: width 2s ease-in-out;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            width: 25%;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: white;
            border: 3px solid var(--secondary);
        }
        
        /* 所需资料 */
        .materials {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .materials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .material-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }
        
        .material-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .material-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .material-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .material-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .material-content {
            padding: 25px;
        }
        
        .material-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .material-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        /* 办理流程 */
        .process {
            padding: 80px 0;
            background-color: white;
        }
        
        .process-steps-vertical {
            margin-top: 50px;
            position: relative;
        }
        
        .process-step-vertical {
            display: flex;
            margin-bottom: 40px;
            position: relative;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }
        
        .process-step-vertical.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .process-step-vertical::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 40px;
            bottom: -40px;
            width: 2px;
            background: var(--secondary);
        }
        
        .process-step-vertical:last-child::before {
            display: none;
        }
        
        .step-number-vertical {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 30px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        
        .step-number-vertical::before {
            content: '';
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: rgba(10, 36, 99, 0.2);
            z-index: -1;
            animation: pulse 2s infinite;
        }
        
        .step-content-vertical {
            flex-grow: 1;
            padding: 15px 0;
        }
        
        .step-content-vertical h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* 营销广告 */
        .marketing {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .marketing-container {
            display: flex;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .marketing-content {
            flex: 1;
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .marketing-image {
            flex: 1;
            background: url('/template/jia/images/28.jpg') no-repeat center/cover;
            position: relative;
        }
        
        .marketing-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            opacity: 0.8;
        }
        
        .benefits-list {
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .benefits-list i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        /* 常见问题 */
        .faq {
            padding: 80px 0;
            background-color: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .faq-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .faq-question {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f9f9f9;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
       
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1);
                opacity: 0.8;
            }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .time-content {
                flex-direction: column;
            }
            
            .marketing-container {
                flex-direction: column;
            }
            
            .marketing-image {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                right: 15px;
                top: 15px;
            }
            
            .nav-menu {
                display: none;
                width: 100%;
                margin-top: 15px;
            }
            
            .nav-menu.active {
                display: block;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .process-step-vertical {
                flex-direction: column;
            }
            
            .step-number-vertical {
                margin-bottom: 15px;
                margin-right: 0;
            }
            
            .process-step-vertical::before {
                left: 30px;
                top: 60px;
                bottom: -40px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .time-info, .time-scale {
                padding: 30px;
            }
            
            .material-header, .material-content {
                padding: 15px;
            }
        }