 .hero-section {
  position: relative;
  height: 50vh;
  overflow: hidden;
  z-index: 100;
  margin-bottom: 50px;
}
.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #F2AF03;
  padding: 10px 20px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}
.card {
    background-color: #554C4C;
    padding: 30px;
    margin-bottom: 30px;
}
.card img {
    width: 80%;
    height: 300px;
    margin: auto;
    border-radius: 10px;
}
.card h2 {
    margin-top: 20px !important;
    margin: auto;
    color:#F2AF03;
}
.card p {
    margin-top: 30px;
    font-weight: 1.4;
    font-size: 1.6rem;
    color: #fff;
}
.card p span {
    color: #F2AF03;
}
.card button {
    background-color: #F2AF03;
    color: #fff;
    font-weight: bold;
    width: 150px;
    margin: auto;  
}
.card button:hover {
    background-color: #9a7a2b;
    color: #fff;
}
.view-all-container {
  text-align: center;
  margin-top: 20px;
}

#view-all-btn {
  background-color: #666565;
  color: white;
  padding: 10px 50px;
  border: none;
  margin: 50px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

#view-all-btn:hover {
  background-color: #858484;
}
