     /* 独享CSS部分 - 我们的服务页面 */
        main {
            margin-top: 80px;
            padding: 40px 0 80px;
        }

        /* 页面标题样式 */
        .page-header {
            background-color: var(--primary-color);
            padding: 80px 0;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 43, 60, 0.9), rgba(44, 62, 80, 0.9));
            z-index: 1;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-title {
            font-size: 48px;
            margin-bottom: 20px;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s forwards 0.5s;
        }

        .page-subtitle {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s forwards 0.8s;
        }

        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* 服务筛选样式 */
        .service-filter {
            margin-bottom: 50px;
            text-align: center;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .filter-btn {
            background-color: #fff;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover, .filter-btn.active {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        /* 服务网格样式 */
        .services-section {
            padding: 20px 0 60px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

        .service-card.animate {
            animation: fadeInUp 0.8s forwards;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .service-header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .service-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: var(--transition);
        }

        .service-card:hover .service-header::before {
            transform: rotate(45deg) translate(50px, 50px);
        }

        .service-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
            position: relative;
            z-index: 2;
        }

        .service-category {
            font-size: 14px;
            color: var(--secondary-color);
            position: relative;
            z-index: 2;
        }

        .service-body {
            padding: 25px;
        }

        .service-desc {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .service-details {
            margin-bottom: 25px;
        }

        .detail-section {
            margin-bottom: 20px;
        }

        .detail-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .detail-title i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .detail-content {
            color: #555;
            padding-left: 25px;
        }

        .detail-content ul, .detail-content ol {
            padding-left: 20px;
            margin-bottom: 10px;
        }

        .detail-content li {
            margin-bottom: 8px;
        }

        .service-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .service-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .service-time {
            display: flex;
            align-items: center;
            color: #777;
        }

        .service-time i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .consult-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            margin-top: 15px;
        }

        .consult-btn:hover {
            background-color: var(--secondary-color);
            color: var(--dark-color);
        }

        /* 服务分类标签 */
        .service-category-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 3;
        }

        /* 服务详情弹窗 */
        .service-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            overflow-y: auto;
            padding: 20px;
        }

        .modal-content {
            background-color: #fff;
            max-width: 800px;
            margin: 50px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            animation: modalFadeIn 0.5s forwards;
        }

        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .modal-header {
            background-color: var(--primary-color);
            color: var(--text-light);
            padding: 20px 30px;
            position: relative;
        }

        .modal-title {
            font-size: 28px;
            margin-bottom: 5px;
        }

        .modal-category {
            color: var(--secondary-color);
            font-size: 16px;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 30px;
            color: var(--text-light);
            cursor: pointer;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--secondary-color);
        }

        .modal-body {
            padding: 30px;
            max-height: 70vh;
            overflow-y: auto;
        }

        .modal-section {
            margin-bottom: 30px;
        }

        .modal-section h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }

        .modal-section p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .modal-section ul, .modal-section ol {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .modal-section li {
            margin-bottom: 10px;
        }

        .modal-footer {
            padding: 20px 30px;
            background-color: #f8f9fa;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .page-title {
                font-size: 40px;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--primary-color);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: var(--transition);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .page-title {
                font-size: 32px;
            }
            
            .page-subtitle {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .modal-content {
                margin: 20px auto;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 28px;
            }
            
            .page-subtitle {
                font-size: 16px;
            }
            
            .section-title h2 {
                font-size: 26px;
            }
            
            .service-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .modal-header {
                padding: 15px 20px;
            }
            
            .modal-body {
                padding: 20px;
            }
            
            .modal-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }