.promotions-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  justify-content: center;
}

.promotion-tile {
  width: 400px;
  height: 250px;
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.promotion-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.promotion-description {
  font-size: 16px;
  margin-bottom: 10px;
}

.apply-button {
  margin-top: auto;
  padding: 10px 20px;
  background-color: #e70e0e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.apply-button:hover {
  background-color: #8c0808;
  transition: background-color 0.2s;
}