.important-component {
  font-family: sans-serif;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: center;
  margin-top: 64px;
}
.important-component .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.important-component .promo-block {
  background-color: #d1f2e8;
  border-radius: 20px;
  padding: 20px;
  width: calc(20% - 16px); /* 5 блоков в ряд */
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.important-component .promo-block .img-wrapper {
  position: absolute;
  user-select: none;
  -webkit-user-drag: none;
}
.important-component .promo-block img {
  width: 135px;
  height: auto;
  position: relative;
  top: -80px;
}
.important-component .promo-block h3 {
  font-size: 18px;
  margin-top: 54px;
}
.important-component .promo-block p {
  font-size: 14px;
  color: #444;
  margin: 0 0 15px;
}
.important-component .promo-code {
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  margin-top: auto;
}
@media (max-width: 1100px) {
  .important-component .promo-block {
    width: calc(25% - 15px); /* 4 в ряд */
  }
}
@media (max-width: 900px) {
  .important-component .promo-block {
    width: calc(33.33% - 13px); /* 3 в ряд */
    margin-bottom: 30px;
  }
}
@media (max-width: 700px) {
  .important-component .promo-block {
    width: calc(50% - 10px); /* 2 в ряд */
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .important-component .promo-block {
    width: 100%; /* 1 в ряд */
    margin-bottom: 30px;
  }
}