         
        /* 联系我们内容样式 */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-title h2 {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
        }
        
        /* 联系方式样式 */
        .contact-section {
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 109, 252, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
        }
        
        .contact-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .contact-info {
            flex: 1;
            opacity: 0;
            transform: translateX(-60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .contact-info.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .contact-info h3 {
            font-size: 32px;
            color: var(--secondary);
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .contact-info p {
            margin-bottom: 20px;
            color: var(--gray);
            line-height: 1.7;
        }
        
        .contact-details {
            margin-top: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .contact-item:hover {
            transform: translateX(10px);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.1);
        }
        
        .contact-text h4 {
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .contact-text p {
            color: var(--gray);
            margin-bottom: 0;
        }
        
        .contact-text .phone {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .qrcode-section {
            flex: 1;
            opacity: 0;
            transform: translateX(60px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
            text-align: center;
            position: relative;
        }
        
        .qrcode-section.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .qrcode-section::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary);
            border-radius: 12px;
            z-index: -1;
            transition: var(--transition);
        }
        
        .qrcode-section:hover::before {
            top: -10px;
            right: -10px;
        }
        
        .qrcode-container {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: inline-block;
        }
        
        .qrcode-section:hover .qrcode-container {
            transform: scale(1.02);
        }
        
        .qrcode-image {
            width: 220px;
            height: 220px;
            margin: 0 auto 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .qrcode-image img {
            max-width: 100%;
            max-height: 100%;
            border-radius: 8px;
        }
        
        .qrcode-text {
            text-align: center;
        }
        
        .qrcode-text h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .qrcode-text p {
            color: var(--gray);
            margin-bottom: 0;
        }
        
        /* 服务流程样式 */
        .process-section {
            position: relative;
            overflow: hidden;
        }
        
        .process-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(26, 109, 252, 0.1) 0%, rgba(0, 201, 167, 0.1) 100%);
        }
        
        .process-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-line {
            position: absolute;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            z-index: 1;
            border-radius: 2px;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        
        .process-step {
            text-align: center;
            width: 18%;
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            animation: pulse 3s infinite;
            animation-delay: calc(var(--animation-order) * 0.5s);
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.05);
            }
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 36px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            z-index: 3;
        }
        
        .process-step:hover .step-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 10px 25px rgba(26, 109, 252, 0.3);
        }
        
        .process-step h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--secondary);
            font-weight: 600;
        }
        
        .process-step p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.5;
        }
        
    
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .contact-content {
                flex-direction: column;
            }
            
            .page-header h1 {
                font-size: 40px;
            }
            
            .process-steps {
                flex-wrap: wrap;
            }
            
            .process-step {
                width: 48%;
                margin-bottom: 40px;
            }
            
            .process-line {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }
            
            nav ul {
                margin: 15px 0;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav li {
                margin: 0 10px 10px;
            }
            
            .phone-number {
                margin-top: 10px;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 30px;
            }
            
            .process-step {
                width: 100%;
            }
            
            .qrcode-image {
                width: 180px;
                height: 180px;
            }
        }