body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #f8f9ff 0%, #e8f2ff 100%);
  margin: 0;
  padding: 0;
}

.promo-header {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-align: center;
  padding: 40px 20px 24px 20px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.10);
}

.promo-header-alt {
  background: #fff;
  color: #764ba2;
  text-align: center;
  padding: 38px 20px 18px 20px;
  border-bottom: 2px solid #764ba2;
  box-shadow: 0 2px 12px rgba(102,126,234,0.07);
}

.promo-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.promo-header-alt h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.promo-header p {
  font-size: 1.2rem;
  margin: 0;
}

.promo-header-alt p {
  font-size: 1.1rem;
  margin: 0;
  color: #667eea;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 40px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 24px;
  max-width: 900px;
  margin: 0 auto;
}

.promo-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(102,126,234,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.promo-horizontal-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(102,126,234,0.10);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.promo-card:hover {
  box-shadow: 0 12px 32px rgba(102,126,234,0.15);
  transform: translateY(-4px) scale(1.02);
}

.promo-horizontal-card:hover {
  box-shadow: 0 12px 32px rgba(102,126,234,0.18);
  transform: translateY(-4px) scale(1.01);
}

.promo-img-wrap {
  position: relative;
  min-width: 220px;
  max-width: 220px;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.promo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 1px solid #f0f0f0;
}

.promo-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #fbbf24 0%, #ff6b6b 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 6px 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(102,126,234,0.10);
  letter-spacing: 1px;
}

.promo-info {
  padding: 24px 18px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-details {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.promo-info h2 {
  font-size: 1.4rem;
  color: #764ba2;
  margin: 0 0 8px 0;
}

.promo-details h2 {
  font-size: 1.3rem;
  color: #764ba2;
  margin: 0 0 10px 0;
}

.promo-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 18px;
}

.promo-details p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 18px;
}

.promo-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(102,126,234,0.07);
  cursor: pointer;
  display: inline-block;
}

.promo-btn-alt {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(102,126,234,0.07);
  cursor: pointer;
  display: inline-block;
  margin-top: auto;
}

.promo-btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
}

.promo-btn-alt:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: translateY(-2px);
}

.promo-footer {
  text-align: center;
  padding: 24px 0;
  color: #667eea;
  background: #f8f9fa;
  font-size: 1rem;
  margin-top: 40px;
  border-radius: 32px 32px 0 0;
}

.promo-footer-alt {
  text-align: center;
  padding: 24px 0;
  color: #667eea;
  background: #f8f9fa;
  font-size: 1rem;
  margin-top: 40px;
  border-radius: 32px 32px 0 0;
}

/* Responsive */
@media (max-width: 700px) {
.promo-card img { height: 160px; }  .promo-grid { grid-template-columns: 1fr; padding: 20px 8px; }  .promo-header h1 { font-size: 1.5rem; }  .promo-header h1 { font-size: 1.5rem; }
.promo-grid { grid-template-columns: 1fr; padding: 20px 8px; }
.promo-card img { height: 160px; }
}

@media (max-width: 900px) {
  .promo-list { padding: 20px 8px; }
  .promo-horizontal-card { flex-direction: column; }
  .promo-img-wrap, .promo-img-wrap img { width: 100%; max-width: 100%; height: 160px; border-right: none; }
}