.pricing-container{
    margin-left: auto;
    margin-right: auto;
    padding: 0px 5%;
    padding-top: 20px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

.pricing-container h1 {
    text-align: center;
}

.pricing-container h2 {
    text-align: center;
}

.price-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.price-text{
    font-size: clamp(1.4rem, 6vw, 2.6rem);
    font-weight: bold;
    margin-block-start: 0.5rem;
    margin-block-end: 0.5rem;
}

.per-user-text{
    font-size: 1.5rem;
    font-weight: 400;
    text-align: start;
}

.badge {
    position: absolute;
    top: -10px; /* Moves it slightly outside the card */
    right: -10px; /* Moves it outside the card */
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transform: rotate(10deg); /* Adds a bit of a 'stuck-on' effect */
  }

@media (max-width: 768px) {
  
    .pricing-container .para-size-mobile{
        font-size: 1rem;
      }
}
