 h1 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .pricing-container {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .card {
      background-color: #ffffff;
      color: #000000;
      border-radius: 12px;
      padding: 1.5rem;
      width: 300px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .card-content {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      justify-content: space-between;
    }
    .card h2 {
      margin-top: 0;
      margin-bottom: 0rem;
      font-size: 1.3rem;
    }
    .price {
      font-size: 1.8rem;
      font-weight: bold;
      margin: 2rem auto;
      text-align: center;
      color: #000000;
      background-color: #f0f0f0;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      display: inline-block;
    }

    .price_recommended
    {
      background-color: #ffffff !important;
      color: #000000 !important;
    }
    .included {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }
    .usecase {
      font-size: 0.85rem;
      font-style: italic;
      margin-bottom: 1.8rem;

    }
    .features {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem 0;
      flex-grow: 1;
    }
    .features li {
      position: relative;
      padding-left: 1.5em;
      margin-bottom: 0.5em;
    }
    .features li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      color: #28a745;
      font-weight: bold;
    }
    .features li.disabled::before {
      content: '\2717';
      color: #aaa;
    }
    .features li.disabled {
      color: #888;
    }
    .cta {
      display: block;
      width: fit-content;
      margin: 1rem auto 0 auto;
      padding: 0.5rem 1rem;
      background-color: #ffffff;
      border: 2px solid #1976d2;
      color: #1976d2;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
    }
    .cta_recommended {
      display: block;
      width: fit-content;
      margin: 1rem auto 0 auto;
      padding: 0.5rem 1rem;
      background-color: #1976d2;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
    }
    .footer {
      text-align: center;
      padding: 2rem;
      font-size: 0.9rem;
     
    }
    .badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #28a745;
      color: white;
      padding: 0.25rem 0.75rem;
      border-radius: 999px;
      font-size: 1rem;
      font-weight: bold;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .recommended 
    {
      color: #ffffff !important;
      background-color: #050f25 !important;
    }

/* common */
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: 2;
  content: '';
  display: block;
  border: 5px solid #14416e;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 15px 0;
  background-color: #1976d2;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
  color: #fff;
  font: 700 18px/1 'Lato', sans-serif;
  text-align: center;
}

/* top left*/
.ribbon-top-left {
  top: -10px;
  left: -10px;
}
.ribbon-top-left::before,
.ribbon-top-left::after {
  border-top-color: transparent;
  border-left-color: transparent;
}
.ribbon-top-left::before {
  top: 0;
  right: 0;
}
.ribbon-top-left::after {
  bottom: 0;
  left: 0;
}
.ribbon-top-left span {
  right: -25px;
  top: 30px;
  transform: rotate(-45deg);
}

/* top right*/
.ribbon-top-right {
  top: -10px;
  right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -25px;
  top: 30px;
  transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left {
  bottom: -10px;
  left: -10px;
}
.ribbon-bottom-left::before,
.ribbon-bottom-left::after {
  border-bottom-color: transparent;
  border-left-color: transparent;
}
.ribbon-bottom-left::before {
  bottom: 0;
  right: 0;
}
.ribbon-bottom-left::after {
  top: 0;
  left: 0;
}
.ribbon-bottom-left span {
  right: -25px;
  bottom: 30px;
  transform: rotate(225deg);
}

/* bottom right*/
.ribbon-bottom-right {
  bottom: -10px;
  right: -10px;
}
.ribbon-bottom-right::before,
.ribbon-bottom-right::after {
  border-bottom-color: transparent;
  border-right-color: transparent;
}
.ribbon-bottom-right::before {
  bottom: 0;
  left: 0;
}
.ribbon-bottom-right::after {
  top: 0;
  right: 0;
}
.ribbon-bottom-right span {
  left: -25px;
  bottom: 30px;
  transform: rotate(-225deg);
}
.sub-heading
{
  text-align: center;
  margin: 0 auto 50px auto;
   font-size: 1.3rem;
   width: 80%;
}