.bs-newpages {
    .hp-header-banner {
        padding: 180px 100px 100px;
        .splide__pagination {
            bottom: -65px;
        }
        .splide__pagination__page {
            margin: 10px;
        }
        .hp-header-banner__inner {
            h1 {
                font-size: 72px;
                line-height: 82px;
                margin: 0 auto;
                background: var(--gradient);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                text-align: center;
                text-transform: unset;
                font-weight: 500;
            }
            .hp-header-banner__subtitle {
                font-size: 24px;
                font-weight: 400;
                color: var(--white);
                text-align: center;
                margin-top: 20px;
                line-height: 1.5;
            }
            .hp-header-banner__buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 50px;

               .usp {
                    display: flex;
                    align-items: center;
                    background-color: rgba(0,42,123,0.5);
                    border: 1px solid var(--highlight-blue);
                    color: var(--white);
                    border-radius: 50px;
                    padding: 15px 30px;
                    font-size: 18px;
                    font-weight: 500;
                    text-decoration: none;
                    transition: background-color 0.3s ease;
                    backdrop-filter: blur(5px);
                    p {
                        margin-bottom: 0;
                        color: var(--white);
                        margin-left: 10px;
                    }
               }
            } 
        }
    }
    .hp-logo-marquee {
        width: 100%;
        position: relative;
        background-color: var(--dark-grey);
        padding: 30px 0;
        .marquee-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(60,46,54,1) 0%,rgba(0,0,0,0) 50%,rgba(60,46,54,1) 100%);
            z-index: 10;
        }
        .marquee {
            overflow: hidden; 
            width: 100%;
            position: relative;
            .marquee-content {
                display: flex;
                white-space: nowrap;
                will-change: transform;
                gap: 50px;
                align-items: center;
                opacity: 0.4;
            }
        }
    }
}

/* Keyframes for marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}