  .card img {
      border-radius: 12px 12px 0 0;
      height: 220px;
      object-fit: cover;
    }

    .btn-custom {
      text-decoration: none;
      background-color: #000;
      color: #fff;
      border-radius: 8px;
      padding: 0.5rem 1.2rem;
      transition: all 0.3s ease;
      justify-content: center;
    }

    .btn-custom:hover {
      background-color: #333;
      color: #fff;
    }

    .card {
      border: none;
      border-radius: 12px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card-body {
      text-align: center;
    }