body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 24px;
  padding: 5px 30px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .banner {
    flex-direction: column-reverse;
    gap: 15px;
    text-align: left;
    height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
.banner .banner-text h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.banner .banner-text p {
  font-size: 20px;
  margin-bottom: 25px;
}
.banner .banner-btn {
  padding: 14px 34px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  color: white;
}
.banner img {
  max-height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=right-image.css.map */