you have to use the is_page() function in wp7344_enqueues(). The is_page() function will help you to identify the specific page by using the page id, title or slug.
Assuming that you have the profile slug for the Profile page. Then apply the codes like:
function wp7344_enqueues() {
if( is_page('profile') ):
wp_enqueue_style( 'theme-profile-page', get_theme_file_uri( '/assets/css/profile.css' ) );
endif;
}
You could use the profile page Title or ID from the same way to check the specific page.