/* 服务页面更新样式 */

/* 服务按钮样式 */
.service-button {
    margin-top: 20px;
}

.service-button .btn {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-button .btn i {
    margin-right: 8px;
}

/* 服务标题背景区域样式 */
.page-title-section.service-title-bg {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}

.page-title-section.service-title-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* 确保页面标题装饰线在白色背景下可见 */
.page-title-decoration {
    height: 3px;
    width: 80px;
    margin: 20px auto 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-button .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}