.practice-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(269.73deg, rgba(153, 115, 99, 0.88) -44.83%, rgba(255, 218, 198, 0.88) 20.02%, rgba(143, 106, 90, 0.88) 107.73%);
  border-radius: 24px;
  padding: 40px 50px;
  overflow: hidden;
  display: none;
}

/* LEFT */
.banner-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 60%;
  align-items: flex-start;
}

/* TEXT BOX */
.text-box {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.text-box h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.text-box p {
  margin-top: 8px;
  font-size: 16px;
  color: #000;
}


.banner-right{
    position: absolute;
    right: 40px;
    bottom: -4px;
}

/* RIGHT IMAGE */
.banner-right img {
  width: 260px;
  max-width: 100%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .practice-banner {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
    height: 210px;
  }

  .text-box h2 {
  text-align: left;
  font-size: 16px;
  }

  .text-box p {
    text-align: left;
  font-size: 12px;
  }

  .banner-right {
    position: absolute;
    right: 0px;
    bottom: 0px;
  }

  .banner-left {
    max-width: 100%;
    align-items: flex-start;
  }

  .banner-right img {
    margin-top: 20px;
    width: 105px;
  }
}