.page-main-content {
  padding: 5rem 10rem;
  background: #f6f6f6;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  gap: 10rem;
}

.page-main-content > div {
  flex: 1;
}

.page-main-content > div > h4 {
  color: #112439;
  font-size: 5rem;
  line-height: 5.3rem;
  margin: 0;
  margin-bottom: 2rem;
  font-weight: 400;
}

.page-main-content > div > .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Roboto";
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199px) {
  .page-main-content {
    padding: 4rem 5rem;
    gap: 2rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .page-main-content > div > h4 {
    font-size: 3rem;
    line-height: 3.3rem;
  }

  .page-main-content > div > .desc {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .page-main-content {
    padding: 3rem;
    flex-direction: column;
    text-align: center;
  }
}
