.price-table-wrapper {
  font-family: "Lato", sans-serif;
  text-align: center;
  margin-top: 30px;
  
}
.price-table-wrapper .featured-table {
  box-shadow: 0px 0px 19px -3px rgba(0, 0, 0, 0.36);
}
.price-table-wrapper .pricing-table {
  display: inline-block;
  border: 0px solid #C8C8C8;
  border-radius: 10px;
  background: lightgrey;
  margin: 20px;
  transition: all 0.3s ease-in-out;
  vertical-align: top;
  width: 100%;         /* Allows the table to take full width of its container */
  max-width: 300px;    /* Limits the maximum width to 300px */
  box-sizing: border-box; /* Ensures padding and border are included in the width */
}
.pricing-table__image {
  width: 20%;       /* Makes the image responsive */
  height: auto;      /* Maintains aspect ratio */
  border-top-left-radius: 10px;  /* Matches the table's border radius */
  border-top-right-radius: 10px; /* Matches the table's border radius */
  margin-bottom: 15px; /* Adds some space below the image */
}
.price-table-wrapper .pricing-table__header {
  padding: 20px;
  font-size: 20px;
  color: #ffffff;
  background: #73282a;
}
.price-table-wrapper .pricing-table__price {
  color: #7f0000;
  padding: 20px;
  margin: auto;
  font-size: 40px;
  font-weight: 500;
}
.price-table-wrapper .pricing-table__button {
  display: block;
  background: #440000;
  text-decoration: none;
  padding: 22px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.price-table-wrapper .pricing-table__button:before {
  position: absolute;
  left: -20%;
  top: -10%;
  content: "";
  width: 60%;
  height: 220%;
  transform: rotate(-30deg);
  background: white;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.price-table-wrapper .pricing-table__button:after {
  position: absolute;
  content: ">";
  top: 0;
  right: 0;
  font-size: 25px;
  padding: 15px;
  padding-right: 40px;
  color: white;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.price-table-wrapper .pricing-table__button:hover {
  background: ff0000;
}
.price-table-wrapper .pricing-table__list {
  padding: 0px;
  color: #505050;
  list-style-type: none;
}
.price-table-wrapper .pricing-table__list li {
  padding: 10px;
  border-bottom: 1px solid #C8C8C8;
}
.price-table-wrapper .pricing-table__list li:last-child {
  border: none;
}
.price-table-wrapper .pricing-table:hover {
  box-shadow: 0px 0px 19px -3px rgba(0, 0, 0, 0.36);
}
.price-table-wrapper .pricing-table:hover .pricing-table__button {
  padding-left: 0;
  padding-right: 35px;
}
.price-table-wrapper .pricing-table:hover .pricing-table__button:before {
  top: -80%;
  transform: rotate(0deg);
  width: 100%;
}
.price-table-wrapper .pricing-table:hover .pricing-table__button:after {
  opacity: 1;
  padding-right: 15px;
}