/************************************************
           == Page Title (Minimal Refined UI) ==
*************************************************/

/* Page title section - hidden for clean UI, but H1 remains in HTML for SEO */
.pageTitle {
    display: none;
    /* Alternative: Keep section visible but hide only H1
    background: #ffffff;
    padding: 70px 0 30px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    */
}

.pageTitle h1 {
    /* H1 is hidden via parent .pageTitle display:none */
    /* But remains in HTML for SEO and accessibility */
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin: 0;
    line-height: 1.4;
}

/* Breadcrumb is hidden visually but JSON-LD schema provides SEO benefits */
.breadCrumb {
    display: none;
    /* Alternatively, use this for screen reader accessibility:
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
    */
}

@media screen and (max-width: 768px) {
    /* Page title is hidden on all devices via .pageTitle { display: none; } */
}


