Hello Ofer,
the description on the SERP comes from the meta description tag inside the <head> tag.
So you would need to inject the text from your service_description into the <head> section of your page.
To do this, you need to place custom PHP code like described in your Facebook image thread.
The Joomla API code for setting the meta description in a position override:
$document = JFactory::getDocument();
$document->setDescription( $cck->getValue('service_description') );
If you want to use the Code Pack plugin:
$document = JFactory::getDocument();
$document->setDescription( $fields['service_description']->value );