<style>


.hero-section {
font-family:Inter, sans-serif;
}
.hero-section h1 {
    color: #203a7a;
    font-size: 46px;  line-height: 52px; 
    margin-top: 0;
    font-weight: bold;
}
section.hero-section .row {
    display: grid;
  align-items: center;
    grid-template-columns: 6fr 6fr;
    column-gap: 0px;
}
section.hero-section img {
    width: 100%;
    opacity: 0;
}
.image-outer {
    background: url(/hubfs/46526028/therpmplatform3.webp);
    background-size: cover;
  /*   transform: scaleX(-1); Flip the background image horizontally */
}

.text-inner {
    background: #def2fa;
    padding: 30px;
    border-radius: 15px 0px 0px 15px;
}
section.hero-section .container {
    max-width: 100%;
    margin: auto;
}
.text-inner{
margin-bottom:20px;
}
.hero-section .container-fluid {
    margin-left: 40px;
}



@media screen and (max-width: 767px) {
    section.hero-section .row {
        display: flex;
        flex-direction: column;
    }

    .image-outer {
        order: -1; /* Ensure the image comes first */
        margin-bottom: 20px;
    }

    .hero-section h1 {
        font-size: 32px; /* Adjust for smaller screens */   line-height: 36px; 
    }

    .text-inner {
        padding: 20px;
    }

    .hero-section .container-fluid {
        margin-left: 20px;
        margin-right: 20px;
    }
}


</style>