.whole-body {
    max-width: 1400px;
    margin: 0 auto;
}

.headbanner {
  display: flex;
  justify-content: center;
  margin-top: 150px;
}

.headbanner img {
  object-fit: cover;
  height: auto;
  max-width: 70%;
  border-radius: 5px;
  border: 2px solid white;
}

.grid-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 310px)); /* Three columns */
    gap: 20px;
    padding: 10px;
  }

  .grid-items {
    width: 310px;
    background-color: white;
    font-size: 30px;
    border-radius: 5px;
  }

  .grid-items img{
    width: 310px;
    max-height: 200px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

  .grid-info {
    padding: 20px;
  }

  .title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
  }

  .description {
    height: 150px;
    font-size: 16px;
    text-align: justify;
    background-color: #f0f0f0;
    padding: 10px 25px;
    overflow: scroll;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 10px;
  }

  .description::-webkit-scrollbar, .grid-description::-webkit-scrollbar {
    width: 10px;
  }

/* Track */
.description::-webkit-scrollbar-track, .grid-description::-webkit-scrollbar-track {
    background: #dadada; 
    border-radius: 5px;
}

/* Handle */
.description::-webkit-scrollbar-thumb, .grid-description::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 5px;
}

/* Handle on hover */
.description::-webkit-scrollbar-thumb:hover, .grid-description::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

  .pricing-area {
    float: right;
    margin-bottom: 20px;
  }

.added-price {
    font-weight: bold;
    color: gray;
    font-size: 16px;
  }

.price{
    font-weight: bold;
}

  .price-text {
    font-size: 16px;
    font-weight: 100;
    color: gray;
  }

  @media (max-width: 955px) {
    
    .headbanner img {
      height: 90px;
      max-width: 90%;
      border-radius: 5px;
      border: 2px solid white;
    }
}