.uc_pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 30px 30px;
  align-items: flex-start;
}

.uc_card {
  background-color: transparent;
  border: 1px solid #444;
  border-radius: 6px;
  width: 260px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
  text-align: center;
}

.uc_card p{
  margin: 0 10px 20px !important;
}

.uc_card.uc_highlighted::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  background-color: #121212;
  border-radius: 6px;
  z-index: 0;
}

.uc_card.uc_highlighted .uc_header,
.uc_card.uc_highlighted .uc_button,
.uc_card.uc_highlighted * {
  position: relative;
  z-index: 1;
}

.uc_header {
  background-color: white;
  color: black;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
  padding: 14px 10px;
  letter-spacing: 1px;
  border-radius: 3px;
}

.uc_price {
  font-size: 50px;
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.4;
  margin-top: 24px;
}

.uc_pricing-container p {
  font-size: 14px;
  font-weight: 300;
  margin: 0 10px 20px;
  line-height: 1.4;
}

.uc_included {
  font-size: 16px;
  color: #545454;
  margin-bottom: 15px;
}

.uc_included p {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  margin: 10px 0 !important;
}

.uc_included ul {
  list-style: none;
  padding-left: 0;
  margin: 10px;
}

.uc_included li {
  color: #fff;
  margin: 5px 0;
  font-weight: 300;
  line-height: 1.1;
}

.uc_included li a {
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  color: inherit;
}

.uc_included li a:hover {
  color: #E3E3E3;
}

.uc_button {
  font-family: 'Bebas Neue', sans-serif;
  background-color: #282828;
  font-size: 24px;
  color: #b4b4b4;
  border: none;
  padding: 12px;
  margin-top: auto;
  cursor: pointer;
  z-index: 1;
  position: relative;
  border-radius: 3px;
}

.uc_button:hover {
  background-color: #383838;
}

@media only screen and (max-width: 768px) {
.uc_card {
 width: 100%;
 }
.uc_pricing-container {
  padding: 20px 0;
  gap: 30px;
}

.uc_pricing-container p{
 font-size: 0.95em
}
.uc_included{
 font-size: 0.9em
}

}