.package-title {
      font-weight: 600;
      margin-bottom: 30px;
      position: relative;
    }
    
    .card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s;
      box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card img {
      height: 220px;
      object-fit: cover;
    }
    .card-body {
      padding: 20px;
    }
    .price {
      font-size: 1.3rem;
      font-weight: 600;
      color: #d32f2f;
    }
   .btn-custom {
    border: 1px solid #b29550;
    color: #ffffff;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 25px;
    transition: all 0.3s;
    background: #b29550;
    font-size: 14px !important;
}
    .btn-custom:hover {
      background: #000000;
      color: #fff;
      border:#000;
    }  