        /* 页面标题横幅 */
        .page-banner {
            margin-top: 70px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .page-banner h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb li {
            margin: 0 10px;
        }
        
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
        }
        
        /* 服务介绍区域 */
        .service-intro {
            padding: 80px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .service-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-bottom: 50px;
        }
        
        .service-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .service-text {
            flex: 1;
        }
        
        .service-text h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .service-text p {
            margin-bottom: 20px;
            color: #4a5568;
        }
        
        /* 服务详情 */
        .service-details {
            padding: 80px 0;
            background-color: var(--gray-color);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            text-align: center;
            padding: 30px 20px;
            border-bottom: 4px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-bottom: 4px solid var(--secondary-color);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-card p {
            color: #718096;
            margin-bottom: 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 600;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .btn:hover {
            background-color: #c19b2e;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* 服务流程 */
        .process {
            padding: 80px 0;
            background-color: white;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--secondary-color);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .step p {
            color: #4a5568;
            padding: 0 15px;
        }
        
        /* 常见问题 */
        .faq {
            padding: 80px 0;
            background-color: var(--gray-color);
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-bottom: 1px solid var(--gray-color);
            padding-bottom: 20px;
        }
        
        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            color: #4a5568;
            padding: 10px 0;
            display: none;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        /* 广告区 */
        .cta {
            padding: 80px 0;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
       /* 响应式设计 */
        @media (max-width: 992px) {
            .service-content {
                flex-direction: column;
            }
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .header-container {
                flex-direction: column;
                padding: 15px 20px;
            }
            
            nav ul {
                margin: 15px 0;
            }
            
            .page-banner {
                margin-top: 130px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 5px 10px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .btn {
                padding: 10px 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }