.forecasting-hero__wrapper {
  margin: 0 auto;
  padding: 0 3.5%;
}

.forecasting-hero__flex-container {
  display: flex;
  justify-content: space-between;
}

.forecasting-hero__flex-left {
  display: flex;
  flex-direction: column;
  max-width: 590px;
}

.forecasting-hero__h1 {
  color: #292940;
  font-family: Inter, sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4em;
}

.forecasting-hero__p {
  color: #7171a6;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.forecasting-hero__btns {
  display: flex;
  gap: 1em;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
}

.forecasting-hero__button {
  color: #fff;
  border-radius: 8px;
  background-color: #5f7efb;
  padding: 0.65em 1.5em;
  cursor: pointer;
  transition: transform 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.forecasting-hero__button-2 {
  color: #5f7efb;
  border-radius: 8px;
  background-color: #eff3ff;
  padding: 0.67em 1.7em;
  cursor: pointer;
  transition: transform 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.forecasting-hero__button:hover {
  background-color: #5f7efb;
  color: #fff;
  transform: translateY(-1px);
}

.forecasting-hero__button-2:hover {
  background-color: #eff3ff;
  color: #5f7efb;
  transform: translateY(-1px);
}

.forecasting-hero__button-text,
.forecasting-hero__button-text-2 {
  margin: 0;
}

.forecasting-hero__bottom-text {
  color: #7171a6;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.forecasting-hero__flex-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
  transform: translateX(20px);
}

.forecasting-hero__image {
  transform: translateY(-22px);
  min-width: 500px;
  max-width: 500px;
  min-height: 470px;
  max-height: 470px;
}

.forecasting-hero__shape {
  min-width: 473px;
  min-height: 571px;
  max-width 473px;
  max-height: 571px;
  position: absolute;
  left: calc(50% + -200px);
  bottom: calc(50% + -270px);
  z-index: -1;
}

/* Tablet & Mobile */
@media (max-width: 980px) {
  .forecasting-hero__flex-container {
    flex-direction: column;
  }
  
  .forecasting-hero__flex-left {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  
  .forecasting-hero__flex-right {
    justify-content: center;
    transform: translateX(0);
  }
  
  .forecasting-hero__image {
    min-width: 90%;
    max-width: 90%;
    min-height: 90%;
    max-height: 90%;
    transform: translateY(0);
  }

  .forecasting-hero__shape {
    display: none;
  }
  
  .forecasting-hero__h1,
  .forecasting-hero__p {
    text-align: center;
  }
}
