        
        /* 页面标题横幅 */
        .page-banner {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 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: cover;
        }
        
        .page-banner h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            position: relative;
            animation: fadeInUp 1s ease;
        }
        
        .page-banner p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
        @keyframes fadeInUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        /* 特色服务标签 */
        .feature-tag {
            display: inline-block;
            background: linear-gradient(135deg, var(--secondary) 0%, #e6c44b 100%);
            color: var(--dark);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            margin-top: 25px;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            animation: pulse 2s infinite;
            position: relative;
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }
        
        /* 服务类型卡片 */
        .service-types {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            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: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 15px auto 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            position: relative;
            top: 0;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .service-card-header {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .service-card-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .service-card-header p {
            opacity: 0.9;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .service-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            border-bottom: 1px dashed #eee;
        }
        
        .service-features li:last-child {
            border-bottom: none;
        }
        
        .service-features li i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .service-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 12px 30px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            text-align: center;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* 资料和流程部分 */
        .info-process {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .info-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .info-tab {
            padding: 15px 30px;
            background: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }
        
        .info-tab.active {
            color: var(--primary);
            border-bottom: 3px solid var(--secondary);
        }
        
        .info-tab:hover:not(.active) {
            background-color: #f1f1f1;
        }
        
        .info-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .info-content.active {
            display: block;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .info-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .info-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .info-card h3 i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .documents-list {
            list-style: none;
        }
        
        .documents-list li {
            padding: 12px 0;
            display: flex;
            align-items: flex-start;
            border-bottom: 1px dashed #eee;
        }
        
        .documents-list li:last-child {
            border-bottom: none;
        }
        
        .documents-list li i {
            color: var(--secondary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .process-steps {
            counter-reset: step;
        }
        
        .process-step {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }
        
        .process-step::before {
            counter-increment: step;
            content: counter(step);
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .process-step-content h4 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .process-step-content p {
            color: #666;
        }
        
        /* 营销优势部分 */
        .advantages {
            padding: 80px 0;
            background: white;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: var(--transition);
            position: relative;
            top: 0;
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .advantage-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            height: 80px;
            width: 80px;
            line-height: 80px;
            background: rgba(10, 36, 99, 0.1);
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .advantage-card:hover .advantage-icon {
            background: var(--primary);
            color: white;
            transform: rotateY(180deg);
        }
        
        .advantage-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        /* CTA区域 */
        .cta-section {
            text-align: center;
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::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: cover;
        }
        
        .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: 16px 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);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-banner h1 {
                font-size: 2.2rem;
            }
            
            .page-banner {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .info-tabs {
                flex-direction: column;
            }
            
            .info-tab {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .page-banner h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 10px 20px;
            }
            
            .process-step {
                flex-direction: column;
            }
            
            .process-step::before {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }