.prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }
  .pricesborder {
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .pricesborder h3 {
    color: #4b083f;
    font-size: 1.5rem;
  }
  .pricesborder p {
    margin: 1rem 0 0;
  }

  a.button {
    display: inline-block;
    background-color: #2c0324;
    color: #660000;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }

  * {
    box-sizing: border-box;
  }