.pricing-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.pricing-box {
  flex: 1;
  min-width: 250px;
  border-radius: 24px;
  border: 2px solid #ccc;
  position: relative;
  padding: 2rem;
  text-align: center;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.pricing-box:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 30px rgb(0 0 0 / 30%);
}

.pricing-box.best-choice {
  border-color: #de027a;
  background-color: #fffbfd;
}

.pricing-box h3 {
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 24px;
}

.pricing-box .number-of-reports {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: bold;
}

.pricing-box p {
  margin-bottom: 0;
  color: #242424;
}

.pricing-box .icons {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-box ul {
  border-top: 1px solid #ccc;
  padding-top: 2rem;
  margin-top: 2rem;
  list-style-type: square;
  list-style-position: outside;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.pricing-box ul li {
  list-style: inherit !important;
  text-align: left;
}

.price {
  border-top: 1px solid #ccc;
  padding-top: 2rem;
  width: 100%;
  text-align: center;
}

.price .button-pink {
  margin-top: 1rem !important;
  display: inline-block;
}

.price .sale-price {
  font-weight: bold;
  font-size: 32px;
}

.price .original-price {
  font-size: 18px;
  text-decoration: line-through;
  color:#ccc;
}
.price .button-pink {
  margin-top: 1rem !important;
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background-color: #de027a;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

/* Mobile styles */
@media (max-width: 768px) {
  .pricing-box {
    flex: 1 1 100%;
  }
}

.bonus-section {
  font-size: 13px;
  margin: 20px;
  border: 2px solid #242424;
  text-align: center;
  padding: 16px;
  border-radius: 20px;
  max-width: 840px;
  
}

.bonus-title {
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: bold;
}

.bonus-description {
  margin-bottom: 16px;
}

.bonus-accordion {
  margin-bottom: 0;
  font-weight: bold;
  background-color: none;
}