.container {
    min-height: 70vh;
    margin-top: 2rem;
  }

  .card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }

  .card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 300px;
    padding: 1.5rem;
    overflow: hidden;
  }

  .card img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
  }

  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .card h3 {
    margin-bottom: 1rem;
    color: #423c49; /* Dark grey for card headings */
  }

  .card p {
    margin-bottom: 1.5rem;
    color: #4e415e; /* Medium grey for card text */
  }

  .card a {
    background-color: #3c2559; /* Updated color */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
  }

  .card a:hover {
    background-color: #2b1a3e; /* Darker shade */
    transform: scale(1.05);
  }