/* Background for promo section */
.promo-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  background: #f5f7fa; /* soft light gray-blue */
  padding: 30px;
  border-radius: 12px;
}

/* 4-column grid of banners */
.banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px; /* more spacing */
  flex: 1;
}

/* Banner items */
.banner-item {
  text-align: center;
}

.banner-item img {
  width: 100%;
  max-width: 640px; /* half of 1280px */
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Sales copy block */
.sales-copy {
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}

.sales-copy h3 {
  margin-top: 0;
}

.sales-copy ul {
  margin-top: 10px;
  padding-left: 20px;
}

/* Download All button */
.download-all {
  display: inline-block;
  background: #0077ff;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
}
.download-all:hover {
  background: #005fcc;
}
