.pss-hero-section {
    position: relative;
    width: 100%;
    height: 54vh;
    overflow: hidden;
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
}

.pss-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.desktop-bg { display: block; }
.mobile-bg { display: none; }

.pss-content-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.pss-content-wrapper.left .pss-content {
    text-align: center; 
    margin-right: auto;
}

.pss-content-wrapper.right .pss-content {
    text-align: center;
    margin-left: auto;
}

.pss-content {
    max-width: 400px;
    color: white;
}

.pss-content h2, .pss-content h1 {
    color: white;
}

.pss-small-heading {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pss-heading1 {
    font-size: 2rem;
    margin-bottom: 0px;
}

.pss-heading2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0px;
}

.pss-button {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 44px;
    background-color: #044bc7;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.pss-button:hover{
    color: #fff;
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .2);
}

.pss-promo-code { 
    color: #fff;
    margin-bottom: 0;
    font-size: 1.2rem;
}

.pss-topbar {
    width: 100vw;
    max-width: 100vw;
    padding: 6px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    box-sizing: border-box;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.pss-topbar-inner h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit !important;
}






/* Mobile Styles */
@media (max-width: 768px) {
    
    .pss-hero-section {
        position: relative;
        width: 100%;
        height: 80vh;
        overflow: hidden;

        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }

    .pss-bg {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }
    
    .desktop-bg { display: none; }
    .mobile-bg { display: block; }

    /* .pss-content-wrapper {
        justify-content: center;
        text-align: center;

    } */

    .pss-content-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; /* Align content to the top */
        text-align: center;
        height: 100%; /* Ensure it fills the container's height */
        padding-top: 15px; /* Optional: Adds spacing from the top */
    }
    

    .pss-content-wrapper.left .pss-content,
    .pss-content-wrapper.right .pss-content {
        margin: 0 auto;
        text-align: center;
    }


    .pss-small-heading {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .pss-heading1 {
        font-size: 1.8rem;
        margin-bottom: 0px;
    }
    
    .pss-heading2 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 0px;
    }

    .pss-button {
        display: inline-block;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px 35px;
        background-color: #044bc7;
        color: #fff;
        text-decoration: none;
        border-radius: 10px;
    }

    .pss-promo-code { 
        color: #fff;
        margin-bottom: 0;
        font-size: 1.1rem;
    }


}
