
        /* ===== 服务页面独享CSS ===== */
        .page-header {
            background-color: var(--primary-color);
            color: white;
            padding: 150px 0 80px;
            text-align: center;
            margin-top: 70px;
        }

        .page-header h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .page-header p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        .services-detail {
            padding: 100px 0;
        }

        .service-category {
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .service-category.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .category-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .category-title h2 {
            font-size: 32px;
            color: var(--primary-color);
            display: inline-block;
            padding-bottom: 15px;
        }

        .category-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-item {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .service-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 24px;
            color: var(--secondary-color);
        }

        .service-title h3 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .service-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--secondary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .service-content {
            padding: 25px;
        }

        .service-price {
            color: var(--secondary-color);
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 20px;
            text-align: center;
            padding: 10px;
            background-color: rgba(201, 163, 94, 0.1);
            border-radius: 5px;
        }

        .service-info {
            margin-bottom: 25px;
        }

        .info-section {
            margin-bottom: 20px;
        }

        .info-section h4 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .info-section h4 i {
            margin-right: 8px;
            color: var(--secondary-color);
        }

        .info-section ul {
            list-style-type: none;
            padding-left: 0;
        }

        .info-section li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .info-section li::before {
            content: '•';
            color: var(--secondary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .service-cta {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
            border: 2px solid var(--secondary-color);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--secondary-color);
        }

        .service-process {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            position: relative;
        }

        .process-step {
            text-align: center;
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 14px;
            font-weight: bold;
        }

        .step-text {
            font-size: 12px;
            color: #666;
        }

        .service-process::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            height: 2px;
            background-color: #eee;
            z-index: 0;
        }

        /* 修复：政策标签位置调整 */
        .policy-tag {
            display: block;
            background-color: #28a745;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            margin: 15px 0;
        }

        /* 响应式设计 */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .services-list {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-wrap: wrap;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 20px;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 16px;
            }
            
            .services-list {
                grid-template-columns: 1fr;
            }
            
            .service-process {
                flex-wrap: wrap;
            }
            
            .process-step {
                flex: 0 0 50%;
                margin-bottom: 15px;
            }
            
            .service-process::before {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .services-detail {
                padding: 60px 0;
            }
            
            .contact-phone {
                font-size: 16px;
            }
            
            .service-header {
                flex-direction: column;
                text-align: center;
            }
            
            .service-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }