#pricing-row {
  display: flex;
  width: 100%;
  min-height: 300px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    width: 300px;
    padding-top: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    background-color: #fff;
  }

  .pricing-card-title {
    display: flex;
    justify-content: start;
    width: 100%;
    padding-left: 40px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
  }

  .pricing-card-price {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0;
    color: #000;
    margin: 20px 0 20px 0;
  }

  .pricing-card-details {
    padding: 0 20px 0 20px;
    display: flex;
    font-weight: bold;
    font-size: 12px;
    flex-direction: column;
    justify-content: start;
    gap: 14px;
    text-align: start;
    color: #000;
    min-height: 200px;
  }
  
  .pricing-card-details ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    list-style-type: none; /* Ensures the use of circles */
    list-style-position: outside; /* Keeps the circle outside the list item */
  }
  
  .pricing-card-details ul li {
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .pricing-card-circle-list {
      width: 8px;
      height: 8px;
      background-color: #CBD5E0;
      border-radius: 100%;
  }
  
  .pricing-card-pay {
      display: flex;
      flex-direction: column;
  }
  
  .pricing-card-details span {
    font-size: 12px;
    line-height: 1.4;
  }

  .highlight {
    color: #e91e63;
    font-weight: bold;
  }

  .pricing-card-payment {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .pricing-card-payment img {
    height: 24px;
  }

  .pricing-card-footer {
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }

  .pricing-card-footer button {
    background-color: #EDF2F7;
    color: #2D3748;
    border: none;
    padding: 10px 20px;
    border-radius: 0px 0px 4px 4px;
    width: 100%;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    height: 60px;
    box-sizing: border-box;
  }

  .pricing-card-footer button:hover {
    background-color: #E0E0E0;
  }
  
   .pricing-card-footer .button--primary {
    background-color: #ff69b4;
    color: white;
  }
  
  .pricing-card-footer .button--primary:hover {
    background-color: #EE4295;
    color: white;
  }
  
  .pricing-card-payment-title {
    font-size: 12px;
    font-weight: bold;
    display: flex;
    justify-content: start;
    width: 100%;
    padding-bottom: 10px;
    color: #646464;
  }