.page-banner-container {
    background-size: cover;
    background-position: center;
    height: 350px;
    position: relative;
    top: -70px;
}

@media (max-width: 992px) {
    .page-banner-container {
        padding: 0 20px;
    }
}

.page-banner-container .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-banner-container .banner-content-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
    color: white;
    position: relative;
    z-index: 2;
}

.page-banner-container .banner-content-wrapper .banner-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-image-container .banner-text-content {
    flex: 1;
    text-align: left;
}

.page-banner-container .banner-title {
    font-size: 2rem;
    font-weight: 700;
    max-width: 50vw;
}

.page-banner-container .banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 50vw;
}

@media (min-width: 2100px) {

    .page-banner-container .banner-description,
    .page-banner-container .banner-title {
        max-width: 40vw;
    }
}

.page-banner-container .breadcrumbs-container {
    font-size: 0.9rem;
}

.page-banner-container .breadcrumbs-container a {
    color: #fff;
    text-decoration: none;
}

.page-banner-container .breadcrumbs-container a:hover {
    color: #3498db;
}

.page-banner-container .breadcrumbs-container span {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner-container .banner-image-container {
    width: 230px;
    height: 230px;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.page-banner-container .square-image-frame {
    width: 100%;
    height: 100%;
    border: 8px solid white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    position: relative;
}

.page-banner-container .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.page-banner-container .hover-text {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 15px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-bottom: 0;
}

.page-banner-container .square-image-frame:hover {
    cursor: pointer;
}

.page-banner-container .square-image-frame:hover .hover-text {
    bottom: 0;
}

.page-banner-container .square-image-frame:hover .banner-image {
    transform: scale(1.1);
}

/* Responsive Design for Mobile and Tablets */
@media (max-width: 950px) {
    .page-banner-container {
        height: auto;
        top: 0;
        padding: 0;
        text-align: center;
    }

    .page-banner-container .banner-content-wrapper {
        flex-direction: column-reverse;
        padding-top: 0;
    }

    .page-banner-container .banner-text-content {
        flex: none;
        text-align: start;
        margin-bottom: 10px;
        padding: 20px;
    }

    .page-banner-container .banner-title {
        font-size: 1.4rem;
        line-height: 1.3;
        max-width: 100%;
    }

    .page-banner-container .banner-description {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .page-banner-container .breadcrumbs-container {
        font-size: 0.85rem;
        display: inline-block;
    }

    .page-banner-container .banner-image-container {
        display: none;
    }

    .page-banner-container .square-image-frame {
        border-width: 6px;
    }

    .page-banner-container .hover-text {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (max-width: 550px) {
    .page-banner-container .banner-text-content {
        padding: 20px 5px;
    }

    .page-banner-container .banner-title {
        font-size: 1.3rem;
    }

    .page-banner-container .banner-description {
        font-size: 0.9rem;
    }

}