  /* 独享CSS - 我们的服务页面 */
        
        /* 页面标题样式 */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .page-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* 服务详情样式 */
        .service-detail-section {
            padding: 80px 0;
        }
        
        .service-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 50px;
            gap: 10px;
        }
        
        .service-tab {
            padding: 12px 25px;
            background: white;
            border: 2px solid var(--primary-color);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            color: var(--primary-color);
        }
        
        .service-tab:hover,
        .service-tab.active {
            background: var(--primary-color);
            color: white;
        }
        
        .service-content {
            display: none;
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .service-content.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-title {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .service-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-icon-large {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .service-icon-large i {
            font-size: 4rem;
            color: var(--primary-color);
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .service-overview {
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #555;
        }
        
        .service-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .detail-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            transition: var(--transition);
        }
        
        .detail-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .detail-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .detail-card h3 i {
            margin-right: 10px;
            color: var(--secondary-color);
        }
        
        .detail-card ul {
            list-style: none;
        }
        
        .detail-card li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .detail-card li::before {
            content: '•';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
        }
        
        .service-price {
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .service-price h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .price-amount {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .price-note {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .service-cta {
            text-align: center;
        }
        
        .btn-large {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: var(--transition);
            border: 2px solid var(--secondary-color);
        }
        
        .btn-large:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }
        
        .free-tag-large {
            display: inline-block;
            background-color: #e8f5e9;
            color: #2e7d32;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: 600;
            margin-top: 15px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .service-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .service-tab {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .service-title {
                font-size: 1.8rem;
            }
            
            .service-details {
                grid-template-columns: 1fr;
            }
            
            .service-content {
                padding: 25px;
            }
        }