/* Hide unwanted text elements on all pages */

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

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

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

/* Hide any heading that contains the specific text */
h1:contains("Insurance & Financial Services"),
h2:contains("Insurance & Financial Services"),
h3:contains("Insurance & Financial Services") {
    display: none !important;
}

/* Hide text containing "Restaurant post type" anywhere on the page */
*:contains("Restaurant post type") {
    display: none !important;
}

/* More aggressive hiding for category pages */
body.taxonomy-gd_placecategory h1.entry-title,
body.taxonomy-gd_placecategory .geodir-page-title,
body.taxonomy-gd_placecategory h1:contains("Insurance"),
body.taxonomy-gd_placecategory h1:contains("Financial") {
    display: none !important;
}
