.page-promotions {
  color: #333333; /* Deep dark text for contrast on light body background */
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
}

.page-promotions__hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-promotions__hero-button--primary {
  background-color: #FFD700;
  color: #1E90FF;
  border-color: #FFD700;
}

.page-promotions__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__hero-button--secondary {
  background-color: #1E90FF;
  color: #ffffff;
  border-color: #1E90FF;
}

.page-promotions__hero-button--secondary:hover {
  background-color: #1a7bdc;
  transform: translateY(-3px);
}

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__section--highlight {
  background-color: #f8f8f8;
}

.page-promotions__section--alt-bg {
  background-color: #e9eff6; /* Lighter shade of auxiliary color */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #555555;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__promo-grid--three-cols {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-image {
  width: 100%;
  height: 250px; /* Consistent height for card images */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__promo-card--small .page-promotions__promo-image {
  height: 200px;
}

.page-promotions__promo-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-promotions__promo-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-promotions__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__promo-button:hover {
  background-color: #e6c200;
}

.page-promotions__promo-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions__list-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-promotions__list-image {
  width: 250px;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-promotions__list-content {
  padding: 20px;
  flex-grow: 1;
}

.page-promotions__list-title {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-promotions__list-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.page-promotions__list-button {
  display: inline-block;
  background-color: #1E90FF;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__list-button:hover {
  background-color: #1a7bdc;
}

.page-promotions__vip-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions__vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 500px;
  text-align: left;
}

.page-promotions__vip-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #333333;
}

.page-promotions__vip-item::before {
  content: '⭐'; /* Unicode star emoji */
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions__vip-image {
  width: 450px;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__vip-action {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__vip-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__vip-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions__section--cta {
  background: linear-gradient(90deg, #1E90FF, #4682B4);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.page-promotions__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
}

.page-promotions__cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1E90FF;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-list {
    gap: 20px;
  }
  .page-promotions__list-item {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__list-image {
    width: 100%;
    height: 200px;
  }
  .page-promotions__list-content {
    padding: 15px;
  }
  .page-promotions__vip-benefits {
    flex-direction: column;
    gap: 30px;
  }
  .page-promotions__vip-image {
    width: 100%;
    max-width: 450px;
  }
  .page-promotions__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__hero-button {
    width: 100%;
    max-width: 300px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-intro {
    font-size: 0.95em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-grid--three-cols {
    grid-template-columns: 1fr;
  }
  .page-promotions__list-item {
    flex-direction: column;
  }
  .page-promotions__list-image {
    width: 100%;
    height: 180px;
  }
  .page-promotions__vip-item {
    font-size: 1em;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}