  
        /* 英雄区域样式 */
        .hero {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('/jia/images/19.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--secondary);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary), #f1c40f);
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* 服务详情区域 */
        .service-details {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .details-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .detail-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        
        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .detail-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .detail-icon {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .detail-header h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        
        .detail-content {
            padding: 25px;
        }
        
        .detail-list {
            margin-bottom: 20px;
        }
        
        .detail-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            padding: 15px;
            background: rgba(10, 36, 99, 0.05);
            border-radius: 8px;
            transition: var(--transition);
        }
        
        .detail-item:hover {
            background: rgba(10, 36, 99, 0.1);
            transform: translateX(5px);
        }
        
        .detail-item i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
            margin-top: 3px;
        }
        
        .detail-item-content {
            flex: 1;
        }
        
        .detail-item h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        /* 流程时间轴样式 */
        .process-timeline {
            margin-top: 20px;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }
        
        .process-step:last-child {
            margin-bottom: 0;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 30px;
            bottom: -30px;
            width: 2px;
            background: var(--secondary);
        }
        
        .process-step:last-child::before {
            display: none;
        }
        
        .step-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            z-index: 1;
            font-weight: bold;
        }
        
        .step-content {
            flex-grow: 1;
        }
        
        .step-content h5 {
            color: var(--primary);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }
        
        .step-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        /* 政策优势区域 */
        .policy {
            padding: 80px 0;
            background-color: white;
        }
        
        .policy-container {
            display: flex;
            background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .policy-content {
            flex: 1;
            padding: 50px;
        }
        
        .policy-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .policy-content p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .policy-badge {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 700;
            margin: 20px 0;
            font-size: 1.2rem;
        }
        
        .policy-features {
            margin: 25px 0;
        }
        
        .policy-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .policy-feature i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .policy-image {
            flex: 1;
            background: url('/jia/images/28.jpg') center/cover no-repeat;
            position: relative;
        }
        
        .policy-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--primary), rgba(10, 36, 99, 0.7));
            opacity: 0.8;
        }
        
        /* 常见问题区域 */
        .faq {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: var(--transition);
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            margin-right: 15px;
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 20px;
        }
        
        /* 行动召唤区域 */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1a3a8f 100%);
            color: white;
            text-align: center;
        }
        
        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }
        
        .btn-outline:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }
  
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .details-container {
                grid-template-columns: 1fr;
            }
            
            .policy-container {
                flex-direction: column;
            }
            
            .policy-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;
                width: 100%;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 15px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* 动画效果 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate.animated {
            opacity: 1;
            transform: translateY(0);
        }