.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #001f3f; /* Dark blue for primary text */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #001f3f 0%, #30475e 100%); /* Dark blue gradient */
  color: #ffffff; /* White text for contrast */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffcc00; /* Gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions__hero-cta-btn {
  display: inline-block;
  background-color: #ffcc00; /* Gold button */
  color: #001f3f; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust as needed */
  right: -50px; /* Adjust as needed */
  opacity: 0.15; /* Subtle background image */
  z-index: 0;
  max-width: 400px;
  width: 100%;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #001f3f; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-promotions__overview, .page-promotions__how-to-claim, .page-promotions__terms-conditions, .page-promotions__why-choose, .page-promotions__cta-bottom {
  padding: 60px 0;
}

.page-promotions__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__list {
  background-color: #ffffff; /* White background for promotion items */
  padding: 80px 0;
}

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

.page-promotions__item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-promotions__item-title {
  font-size: 1.6em;
  color: #001f3f;
  padding: 15px 20px 10px;
  font-weight: bold;
}

.page-promotions__item-title a {
  color: #001f3f;
  text-decoration: none;
}

.page-promotions__item-title a:hover {
  color: #ffcc00;
}

.page-promotions__item-description {
  font-size: 1em;
  color: #333333;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-promotions__item-actions {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 20px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto; /* Push actions to the bottom */
}

.page-promotions__btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  flex: 1;
  margin: 0 5px;
}

.page-promotions__btn--detail {
  background-color: #001f3f; /* Dark blue button */
  color: #ffcc00; /* Gold text */
  border: 1px solid #001f3f;
}

.page-promotions__btn--detail:hover {
  background-color: #003366; /* Slightly lighter blue */
  color: #ffffff;
}

.page-promotions__btn--claim {
  background-color: #ffcc00; /* Gold button */
  color: #001f3f; /* Dark blue text */
  border: 1px solid #ffcc00;
}

.page-promotions__btn--claim:hover {
  background-color: #e6b800; /* Darker gold */
  color: #001f3f;
}

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

.page-promotions__steps li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
}

.page-promotions__steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffcc00; /* Gold step number */
  color: #001f3f; /* Dark blue text */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps strong {
  color: #001f3f;
  font-size: 1.2em;
}

.page-promotions__inline-link {
  color: #001f3f; /* Dark blue for inline links */
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__inline-link:hover {
  color: #ffcc00;
}

.page-promotions__list-details {
  list-style-type: disc;
  margin-left: 25px;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-promotions__list-details li {
  margin-bottom: 10px;
  color: #333333;
}

.page-promotions__list-details strong {
  color: #001f3f;
}

.page-promotions__why-choose {
  background-color: #001f3f; /* Dark blue background */
  color: #ffffff; /* White text */
}

.page-promotions__why-choose .page-promotions__section-title {
  color: #ffcc00; /* Gold title on dark background */
}

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

.page-promotions__reason-item {
  text-align: center;
  padding: 25px;
  background-color: #0a2f52; /* Slightly lighter blue for cards */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__reason-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__reason-item h3 {
  font-size: 1.5em;
  color: #ffcc00; /* Gold heading */
  margin-bottom: 15px;
}

.page-promotions__reason-item p {
  font-size: 1em;
  color: #e0e0e0; /* Light grey text */
}

.page-promotions__cta-bottom {
  background-color: #f0f0f0; /* Light grey background */
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-title {
  font-size: 2.8em;
  color: #001f3f;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: #ffcc00; /* Gold button */
  color: #001f3f; /* Dark blue text */
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__btn--large:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__item-title {
    font-size: 1.4em;
  }
  .page-promotions__reason-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-image-wrapper {
    display: none;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-promotions__overview, .page-promotions__how-to-claim, .page-promotions__terms-conditions, .page-promotions__why-choose, .page-promotions__cta-bottom {
    padding: 40px 0;
  }
  .page-promotions__btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }
  .page-promotions__item-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-promotions__btn {
    margin: 5px 0;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1.1em;
  }
  .page-promotions__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__text-content, .page-promotions__list-details li, .page-promotions__steps li {
    font-size: 0.95em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__item-title {
    font-size: 1.3em;
  }
  .page-promotions__reason-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}