.choose-banner {
  background-color: #ffffff;
  width: 100%;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.choose-title {
  font-size: 80px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #dd630f 0%, #ffa245 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 20px;
}

.choose-description {
  font-size: 19px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #000000;
  margin: 0 auto;
}

.books-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  margin-top: 50px;
}

.books-main-image {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  object-fit: contain;
  /* display: block; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.books-wrapper {
  position: relative;
  z-index: 1;
}

.books-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/ellipse.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 560px;
  width: 100%;
  max-width: 1200px;
  z-index: -1;
  opacity: 0.8;
}

@media (min-width: 1024px) and (max-width: 1550px) {
  .choose-title {
    font-size: 60px;
  }

  .choose-description {
    font-size: 18px;
  }

  .books-main-image {
    max-width: 900px;
  }
}

@media (max-width: 1024px) {
  .choose-banner {
    padding: 60px 0;
  }

  .choose-title {
    font-size: 48px;
  }

  .choose-description {
    font-size: 16px;
    /* max-width: 700px; */
    padding: 0 20px;
  }

  .books-main-image {
    max-width: 700px;
  }

  .books-wrapper::before {
    height: 450px;
  }
}

@media (max-width: 835px) {
  .choose-banner {
    padding: 40px 0 60px;
  }

  .choose-title {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .choose-description {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 25px;
    max-width: 95%;
  }

  .books-image-container {
    margin-top: 35px;
  }

  .books-main-image {
    max-width: 100%;
    padding: 0 20px;
  }

  .books-wrapper::before {
    height: 350px;
    opacity: 0.6;
  }
}

@media (max-width: 576px) {
  .choose-banner {
    padding: 80px 0 50px;
  }

  .choose-title {
    font-size: 26px;
    line-height: 1.4;
  }

  .choose-description {
    font-size: 13px;
    padding: 0 15px;
  }

  .books-main-image {
    padding: 0 10px;
  }

  .books-wrapper::before {
    height: 280px;
    background-size: 90%;
  }
}
