.bg-ash {
  background-color: #efefef !important;
}

/* Define custom CSS for the card */
.box-with-shadow {
  transition: box-shadow 0.3s;
  border: none;
  background-color: #f5f5f5;
}

/* Apply the shadow on hover */
.box-with-shadow:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Style the card title */
.card-title {
  color: #333;
}

/* Style the price */
.card-price {
  font-size: 1.5rem;
  color: #e74c3c; /* Custom price color */
}

/* Style the list items */
.list-group-item {
  border: none;
}

/* Style the subscribe button */
.subscribe-button {
  background-color: #e74c3c; /* Custom button color */
  border: none;
  color: #fff;
}

.subscribe-button:hover {
  background-color: #c0392b; /* Custom button color on hover */
}