.banner {
  padding: 60px 120px;
}

.banner-inner {
  max-width: 1272px;
  margin: 0 auto;
  background: linear-gradient(to top, #f9671a 11.429%, #ffb76a 114.29%);
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

.banner-image {
  flex-shrink: 0;
  width: 50%;
  position: relative;
}

.banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-content {
  padding: 60px;
  flex: 1;
}

.banner-content h2 {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--white);
}

.banner-content p {
  font-size: 18px;
  color: var(--white);
  line-height: 1.6;
  max-width: 460px;
}

@media (max-width: 1024px) {
  .banner {
    padding: 60px 24px;
  }

  .banner-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .banner-inner {
    flex-direction: column;
    border-radius: 24px;
    text-align: center;
  }

  .banner-image {
    width: 100%;
  }

  .banner-content {
    padding: 32px 24px;
  }

  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content p {
    max-width: 100%;
  }
}
