.promo-banner {
  background: linear-gradient(to right, #28a745, #28a745);
  border-radius: 20px;
  padding: 30px;
  color: white;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 20px auto;
}

.content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.left {
  flex: 1.2;
}

.left h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.left p {
  font-size: 14px;
  margin-bottom: 15px;
}

.logos img {
  height: 32px;
  width: 647px;
  vertical-align: middle;
}

.right {
  flex: 0.8;
  text-align: right;
  position: relative;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: 0;
  background: orange;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 15px;
}

.price .new {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.price .old {
  font-size: 16px;
  text-decoration: line-through;
  color: #ccc;
  margin-left: 10px;
}

.btn-videoone {
  display: inline-block;
  background: white;
  color: orange;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
}
@media (max-width: 700px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .right {
    text-align: center;
    margin-top: 20px;
    position: static;
  }

  .discount-badge {
    position: static;
    margin-bottom: 10px;
    display: inline-block;
  }

  .logos img {
    width: 100%;
    height: auto;
    max-width: 647px;
  }
}
