/* Hide unwanted text elements on category pages */
.geodir-page .entry-title:contains("All Insurance & Financial Services"),
.geodir-page h1:contains("All Insurance & Financial Services"),
.geodir-page .geodir-page-title:contains("All Insurance & Financial Services") {
    display: none !important;
}

/* Alternative method using attribute selectors */
.geodir-page h1[style*="color: #ff0000"],
.geodir-page h1[style*="color: #ff00ff"],
.geodir-page h1[style*="color: #e91e63"] {
    display: none !important;
}

/* Hide any text containing "Restaurant post type" */
.geodir-page *:contains("Restaurant post type") {
    display: none !important;
}

/* More specific targeting for the category page */
body.taxonomy-gd_placecategory h1.entry-title,
body.taxonomy-gd_placecategory .geodir-page-title {
    display: none !important;
}

/* Hide the specific category title if it contains Insurance & Financial Services */
body.taxonomy-gd_placecategory h1:contains("Insurance & Financial Services") {
    display: none !important;
}
