.page-promotions {
  color: #ffffff; /* Light text for dark body background #333 */
  padding-top: var(--header-offset, 120px); /* Account for fixed header on desktop and mobile */
}

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

.page-promotions__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px; /* Adjusted padding to ensure text is visible */
  overflow: hidden;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

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

.page-promotions__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__hero-button,
.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Midnight blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-promotions__hero-button:hover,
.page-promotions__cta-button:hover {
  background-color: #e6c200;
  color: #000066;
  transform: translateY(-2px);
}

.page-promotions__overview-section,
.page-promotions__featured-promotions,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__why-choose-section,
.page-promotions__details-list-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Darker section background */
  margin-bottom: 20px;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.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-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-promotions__grid-item {
  background-color: #000080; /* Midnight blue card background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promotions__grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-promotions__grid-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__grid-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  line-height: 1.5;
}

.page-promotions__grid-button,
.page-promotions__promo-button,
.page-promotions__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__grid-button:hover,
.page-promotions__promo-button:hover,
.page-promotions__detail-button:hover {
  background-color: #e6c200;
  color: #000066;
}

.page-promotions__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-promotions__promo-card {
  background-color: #000080; /* Midnight blue card background */
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promotions__promo-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-promotions__promo-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__promo-description {
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.5;
}

.page-promotions__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

.page-promotions__cta-button--bottom {
  margin-top: 40px;
}

.page-promotions__terms-section p {
  text-align: left;
  margin-bottom: 20px;
  color: #cccccc;
  line-height: 1.7;
}

.page-promotions__terms-section p a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__terms-section p a:hover {
  text-decoration: underline;
}

.page-promotions__why-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions__why-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 128, 0.6); /* Semi-transparent midnight blue */
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__why-icon {
  font-size: 1.8em;
  color: #FFD700;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-promotions__why-text {
  font-size: 1.1em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-promotions__why-text strong {
  color: #FFD700;
}

.page-promotions__detail-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-promotions__detail-card {
  background-color: #000080;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promotions__detail-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions__detail-description {
  font-size: 1.1em;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-promotions__promo-list {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  }

  .page-promotions__promo-card {
    flex-direction: row;
  }

  .page-promotions__promo-image {
    width: 40%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-promotions__promo-content {
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .page-promotions__promo-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-promotions__promo-card {
    flex-direction: row;
  }

  .page-promotions__promo-image {
    width: 40%;
    height: auto;
  }

  .page-promotions__promo-content {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__grid-item {
    padding: 20px;
  }

  .page-promotions__grid-image {
    height: 180px;
  }

  .page-promotions__promo-card {
    flex-direction: column;
  }

  .page-promotions__promo-image {
    height: 250px;
  }

  .page-promotions__promo-content {
    padding: 20px;
  }

  .page-promotions__promo-title {
    font-size: 1.6em;
  }

  .page-promotions__promo-description {
    font-size: 0.95em;
  }

  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__why-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions__why-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}