.page-hero {
    position: relative;
    width: 100%;
    height: 400px;
    /* adjust height as needed */
    background-image: url("./img/general\ hero\ image");
    /* replace with your hero image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(23, 47, 98, 0.6);
    /* dark overlay for readability */
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-hero-title {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.breadcrumbs-wrap {
    margin-top: 10px;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    display: inline-flex;
    color: #fff;
    font-size: 16px;
}

.breadcrumb li {
    margin: 0 5px;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb .delimiter {
    margin: 0 5px;
    color: #fff;
}
