.promo-sections {
  margin: 20px 0;
}
.promo-sections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  min-height: auto;
}
.promo-section {
  position: relative;
  padding: 30px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
}
.promo-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.promo-section__content {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: white;
}
.promo-section__title {
  text-align: center;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}
.promo-section__subtitle {
  font-size: 22rem;
  margin-bottom: 12px;
  color: #E31E24;
  font-weight: 600;
}
.promo-section__description {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}
.promo-section__features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.promo-section__features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.promo-section__features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffd700;
  font-weight: bold;
}
.promo-section__button {
  display: inline-block;
  background: #e53935;
  color: white;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.promo-section__button:hover {
  background: #c62828;
  color: white;
}
.promo-section__side {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 20px;
  border-radius: 6px;
  margin-top: 15px;
}
.promo-section__side-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.promo-section__side-features {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}
.promo-section__side-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: #555;
}
.promo-section__side-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e53935;
  font-weight: bold;
}
.promo-section__side-button {
  display: inline-block;
  background: #e53935;
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.promo-section__side-button:hover {
  background: #c62828;
  color: white;
}
/*# sourceMappingURL=style.css.map */