.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  line-height: 1.6;
  background-color: #121A26; /* Slightly lighter dark blue for main background */
}

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

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

.page-promotions__section:nth-of-type(even) {
  background-color: #1A2E47; /* Main dark blue for alternating sections */
}

.page-promotions__hero {
  background: linear-gradient(135deg, #1A2E47 0%, #0D1726 100%); /* Darker gradient for hero */
  padding: 100px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark_pattern]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions__hero > .page-promotions__container {
  position: relative;
  z-index: 1;
}

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

.page-promotions__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #B0B0B0;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E47;
}

.page-promotions__btn--primary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #1A2E47; /* Dark blue button */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #2F4F6F;
  transform: translateY(-2px);
}

.page-promotions__btn--tertiary {
  background-color: #3A4F6B; /* Muted blue for card buttons */
  color: #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions__btn--tertiary:hover {
  background-color: #4A607C;
  transform: translateY(-1px);
}

.page-promotions__intro p {
  max-width: 900px;
  margin: 20px auto;
  color: #B0B0B0;
  font-size: 1.05em;
}

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

.page-promotions__card {
  background-color: #1A2E47;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #2F4F6F;
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px 20px;
  margin: 0;
  min-height: 70px;
}

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

.page-promotions__card-title a:hover {
  color: #E5C100;
  text-decoration: underline;
}

.page-promotions__card-description {
  padding: 0 20px 20px 20px;
  color: #B0B0B0;
  flex-grow: 1;
}

.page-promotions__card .page-promotions__btn {
  margin: 0 20px 20px 20px;
  text-align: center;
}

.page-promotions__how-to-claim ol {
  list-style: none;
  counter-reset: step-counter;
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
  text-align: left;
}

.page-promotions__how-to-claim li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promotions__how-to-claim li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #1A2E47;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
}

.page-promotions__how-to-claim li strong {
  color: #FFD700;
}

.page-promotions__how-to-claim li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__how-to-claim li a:hover {
  color: #E5C100;
}

.page-promotions__terms ul {
  list-style: none;
  max-width: 900px;
  margin: 40px auto;
  padding: 0;
  text-align: left;
}

.page-promotions__terms li {
  background-color: #2F4F6F; /* A lighter shade of dark blue for list items */
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #E0E0E0;
  font-size: 1em;
  border-left: 5px solid #FFD700;
}

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

.page-promotions__feature-item {
  background-color: #1A2E47;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

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

.page-promotions__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

.page-promotions__contact p {
  max-width: 800px;
  margin: 20px auto 40px auto;
  color: #B0B0B0;
  font-size: 1.05em;
}

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

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__how-to-claim li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-promotions__how-to-claim li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-promotions__feature-item {
    padding: 20px;
  }
  .page-promotions__feature-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-promotions__how-to-claim li {
    padding-left: 45px;
    font-size: 0.95em;
  }
  .page-promotions__how-to-claim li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
  .page-promotions__terms li {
    font-size: 0.9em;
  }
}