.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    min-height: 280px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-banner__title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #efb920;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner__breadcrumbs {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.page-banner__breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner__breadcrumbs a:hover {
    color: #efb920;
}

.page-banner__breadcrumbs span {
    color: #efb920;
}

@media (max-width: 991px) {
    .page-banner__title {
        font-size: 3rem;
    }

    .page-banner {
        padding: 56px 0;
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .page-banner__title {
        font-size: 2.2rem;
    }
}