.lefttitlerightcontent .content-block {
  overflow: hidden;
  /* Ensures content doesn't overflow */
  height: 100%;
  /* Ensures equal height columns */
}

.lefttitlerightcontent .left-block {
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  padding: 20px;
}

.lefttitlerightcontent .right-block {
  background-color: #fff;
  /* Optional: background color for right */
  padding: 20px;
  padding-right: 10%;
}

/* --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------- BOOTSTRAP MEDIA QUERIES --------------------------------------------- */
/* --------------------------------------------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .container-fluid.reset-mob {
    margin: 0 !important;
    padding: 0 !important;
    padding-left: 10px !important;
    padding-right: 20px !important;
    width: 100% !important;
    max-width: none !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .left-block {
    justify-content: left !important;
    padding: 0 !important;
  }
  .right-block {
    justify-content: center;
    padding: 0 !important;
  }
}
