.offers-container {
  display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      margin: auto;
      padding: 50px 0;
} 

 .offer-box {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
    align-items: center;
} 

.offer-box h3{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-align: center;  
}


.button-wrapper{
  margin-top: auto;
}
@media screen and (max-width:991px) {
  .offers-container {       
      grid-template-columns: repeat(2, 1fr); /* 3 columns per row */
     
  }

}
@media screen and (max-width:650px) {
  .offers-container {       
      grid-template-columns: repeat(1, 1fr); /* 3 columns per row */
     
  }

}