
/* Main wrapper: split layout */
.global_row_wrapper {
  display: flex; /* reverses order: text right, image left */
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

.about_eleveo_global_wrapper {
  max-height:510px;
}

/* Left side (now image) */
.about_eleveo_image_wrapper {
  flex: 0 0 50vw; /* image takes half screen width */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  position: relative; /* remove absolute positioning */
}

/* Right side (text area) */
.about_eleveo_title_wrapper {
  flex: 1;
  background: #FFFFFF; /* or white if you want contrast */
  color: #141414;
  padding: 10% 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_eleveo_title {
  max-width: 600px;
}

.about_eleveo_title_wrapper h1 {
  font-size: 40px;
  font-weight: 450;
  line-height: 130%;
}

.about_eleveo_title_wrapper h1 span {
  font-size: 40px;
  font-weight: 450;
}

.about_eleveo_title_wrapper p {
  font-size: 17px;
  font-weight: 325;
  line-height: 23px;
  margin: 20px 0;
  font-weight:300;
}

.about_eleveo_title_wrapper strong {
  font-weight:500;
}

span.blue {
  color: #2F80ED; 
}

/* Responsive layout */
@media screen and (max-width: 999px) {
  .global_row_wrapper {
    flex-direction: column;
  }
  .about_eleveo_image_wrapper {
    width: 100%;
    height: 350px;
  }
  .about_eleveo_title_wrapper {
    padding: 40px 15%;
  }
  .about_eleveo_global_wrapper {
    max-height:initial;
  }

}

@media screen and (max-width: 768px) {
  .about_eleveo_title_wrapper {
    padding: 40px 5%;
  }
  .
