        
        /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
            color: white;
            padding: 100px 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: 100% 100%;
        }
        
        .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 {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 服务介绍 */
        .service-intro {
            padding: 80px 0;
            background-color: white;
        }
        
        .intro-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .intro-text {
            flex: 1;
            min-width: 300px;
        }
        
        .intro-text h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2.2rem;
        }
        
        .intro-text p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #444;
        }
        
        .intro-image {
            flex: 1;
            min-width: 300px;
            position: relative;
        }
        
        .intro-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .intro-image:hover img {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* 服务特色 */
        .service-features {
            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);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 0;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            transition: var(--transition);
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            z-index: 1;
        }
        
        .feature-card p {
            position: relative;
            z-index: 1;
        }
        
        /* 所需资料 */
        .materials-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .materials-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .material-item {
            margin-bottom: 30px;
            padding: 25px;
            background-color: var(--light);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }
        
        .material-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .material-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .material-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .material-header h3 {
            color: var(--primary);
            font-size: 1.3rem;
        }
        
        .material-content ul {
            list-style: none;
            padding-left: 20px;
        }
        
        .material-content li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }
        
        .material-content li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        /* 服务流程 */
        .process-section {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .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) scale(1.05);
            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;
        }
        
        /* 服务优势 */
        .advantages-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background-color: var(--light);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
            transition: var(--transition);
            z-index: 0;
            opacity: 0.05;
        }
        
        .advantage-card:hover::before {
            height: 100%;
        }
        
        .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;
            position: relative;
            z-index: 1;
        }
        
        .advantage-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
            z-index: 1;
        }
        
        .advantage-card p {
            position: relative;
            z-index: 1;
        }
        
        /* CTA区域 */
        .cta-section {
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;

            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
            position: relative;
        }
        
        .btn-large {
            display: inline-block;
            padding: 15px 40px;
            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);
        }
        
        /* FAQ区域 */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .faq-question {
            padding: 20px;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background-color: #e9ecef;
        }
        
        .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: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* 响应式设计 */
        @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;
            }
            
            .intro-content {
                flex-direction: column;
            }
            
            .intro-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 2.2rem;
            }
            
            .page-banner p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .material-header {
                flex-direction: column;
                text-align: center;
            }
            
            .material-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .page-banner {
                padding: 60px 0;
            }
            
            .page-banner h1 {
                font-size: 1.8rem;
            }
            
            .btn-large {
                padding: 12px 30px;
            }
            
            .step-icon {
                width: 80px;
                height: 80px;
                font-size: 1.8rem;
            }
            
            .step-content {
                padding: 15px;
            }
        }