.page-banner-container {
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding: 0 5%;
    margin-top: -70px;
}


.page-banner-container .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-banner-container .banner-content-wrapper {
    display: flex;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.page-banner-container .banner-text-content {
    flex: 1;
    color: white;
    padding-right: 50px;
    z-index: 2;
    margin-top: 30px;
}

.page-banner-container .banner-title {
    font-size: 2rem;
    font-weight: 700;
}

.page-banner-container .banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 50vw;
}

.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 {
    position: absolute;
    right: 5vw;
    top: 70%;
    transform: translateY(-50%);
    flex-shrink: 0;
    z-index: 10;
    width: 230px;
    height: 230px;
}

.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);
}

@media (max-width: 768px) {
    .page-banner-container {
        height: auto;
        padding: 100px 5% 50px;
        flex-direction: column;
        text-align: center;
    }

    .page-banner-container .banner-content-wrapper {
        flex-direction: column;
    }

    .page-banner-container .banner-text-content {
        padding-right: 0;
        padding-top: 20px;
        text-align: center;
        background: white;
        color: #001f3f;
        padding: 30px;
        margin-top: 0;
        position: relative;
        border-radius: 8px;
        width: 100%;
    }

    .page-banner-container .banner-description {
        max-width: 100%;
        color: #333;
        margin: 0 auto;
    }

    .page-banner-container .banner-image-container {
        display: none;
    }

    .banner-title {
        font-size: 2rem;
        color: #001f3f;
        margin-bottom: 15px;
    }

    .page-banner-container .breadcrumbs-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-banner-container .breadcrumbs-container a,
    .page-banner-container .breadcrumbs-container span {
        color: #001f3f !important;
    }
}

@media (max-width: 480px) {
    .page-banner-container .banner-title {
        font-size: 1.8rem;
    }

    .page-banner-container .banner-description {
        font-size: 1rem;
    }
}