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

/* 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: 70px 50px 120px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about_eleveo_title {
  max-width: 600px;
}

.about_eleveo_title_wrapper h1 {
  font-size: 72px;
  font-weight: 450;
  line-height: 130%;
  margin: 50px 0 30px 0;
}

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

span.blue {
  color: #2F80ED; 
}

/* Button styles */
.about_eleveo_title_wrapper .title_button {
  display: inline-block;
  margin-top: 40px;
  font-weight: 450;
  background-color: #2F80ED; 
  padding: 17px 15px;
  border-radius: 8px;
  width: 160px;
  font-size: 17px;
  border: solid 1px transparent;
  color: white;
  text-align: center;
}

.about_eleveo_title_wrapper .title_button:hover {
  background: transparent;
  border-color: white;
  color: white;
}

/* 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%;
  }
}

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