.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  line-height: 1.6;
  background-color: #0A244A; /* Main dark blue background */
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #C0C0C0; /* Lighter gray for descriptions */
}

/* Hero Section */
.page-promotions__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A244A 0%, #1A3E6C 100%); /* Dark blue gradient */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  z-index: 10;
  max-width: 800px;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #F0F0F0; /* Off-white for subtitle */
  margin-bottom: 40px;
}

.page-promotions__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #0A244A; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__hero-cta:hover {
  background-color: #E0B800; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15; /* Subtle background image */
  z-index: 1;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose Section */
.page-promotions__why-choose {
  padding: 60px 0;
  background-color: #0F2D52; /* Slightly lighter dark blue */
}

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

.page-promotions__feature-item {
  background-color: #1A3E6C; /* Medium dark blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow for icons */
}

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__feature-text {
  font-size: 1em;
  color: #C0C0C0; /* Lighter gray for feature text */
}

/* Offers List Section */
.page-promotions__offers-list {
  padding: 60px 0;
  background-color: #0A244A;
}

.page-promotions__offer-card {
  display: flex;
  flex-direction: column;
  background-color: #1A3E6C;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.page-promotions__offer-card--reversed {
  flex-direction: column-reverse; /* For alternating layout on mobile */
}

.page-promotions__offer-image-wrapper {
  flex: 1;
}

.page-promotions__offer-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions__offer-content {
  flex: 2;
  padding: 30px;
}

.page-promotions__offer-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__offer-text {
  font-size: 1.05em;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-promotions__offer-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #0A244A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-right: 15px;
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
}

.page-promotions__offer-cta:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

.page-promotions__detail-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-promotions__detail-link:hover {
  color: #E0B800;
  text-decoration: underline;
}

/* How To Claim Section */
.page-promotions__how-to-claim {
  padding: 60px 0;
  background-color: #0F2D52;
}

.page-promotions__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__steps-list li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A244A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-promotions__steps-list li strong {
  color: #FFD700;
}

.page-promotions__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__inline-link:hover {
  color: #E0B800;
  text-decoration: underline;
}

.page-promotions__note {
  font-style: italic;
  color: #C0C0C0;
  text-align: center;
  margin-top: 30px;
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions {
  padding: 60px 0;
  background-color: #0A244A;
}

.page-promotions__terms-list {
  list-style: disc inside;
  margin-top: 30px;
  padding-left: 20px;
  color: #E0E0E0;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promotions__terms-list li strong {
  color: #FFD700;
}

/* Detail Promotions Section */
.page-promotions__detail-promotions {
  padding: 60px 0;
  background-color: #0F2D52;
}

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

.page-promotions__detail-item {
  background-color: #1A3E6C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions__detail-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__detail-item-title a {
  color: inherit;
  text-decoration: none;
}

.page-promotions__detail-item-title a:hover {
  text-decoration: underline;
}

.page-promotions__detail-item-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__detail-item-cta {
  display: inline-block;
  background-color: #FFD700;
  color: #0A244A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.page-promotions__detail-item-cta:hover {
  background-color: #E0B800;
  transform: translateY(-2px);
}

/* Final CTA Section */
.page-promotions__cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, #1A3E6C 0%, #0A244A 100%);
  text-align: center;
}

.page-promotions__cta-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button--primary {
  background-color: #FFD700;
  color: #0A244A;
}

.page-promotions__cta-button--primary:hover {
  background-color: #E0B800;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A244A;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-promotions__offer-card {
    flex-direction: row;
  }

  .page-promotions__offer-card--reversed {
    flex-direction: row-reverse;
  }

  .page-promotions__offer-image {
    height: auto;
  }

  .page-promotions__hero-title {
    font-size: 4em;
  }
}

@media (max-width: 767px) {
  .page-promotions__hero {
    padding: 60px 15px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__offer-image {
    height: 200px;
  }
  .page-promotions__feature-grid,
  .page-promotions__detail-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__cta-button {
    width: 90%;
    max-width: 300px;
  }
}