.page-banner {
    position: relative;
    min-height: 900px;
    overflow: visible;
}

.page-banner .banner-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-banner .banner-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.banner-content {
    padding: 200px 0 250px;
}

.page-banner .banner-content h1 {
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 73px;
    letter-spacing: -2.6px;
}

.page-banner .banner-content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 187.5% */
    letter-spacing: -0.64px;
    margin-bottom: 0;
}

.banner-logos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 3;
}

.banner-logos-swiper {
    overflow: hidden;
}

.banner-logos-swiper .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-logo {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.banner-logo:hover {
    opacity: 1;
}

@media (max-width: 575px) {
    .banner-content {
        padding: 50px 0 100px;
    }

    .page-banner .banner-content h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .page-banner {
        min-height: 500px;
    }
}