.page-promotions {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for main content */
}

.page-promotions__hero-section {
  text-align: center;
  padding-bottom: 40px;
  background-color: #0a0909;
  color: #FFFFFF;
}

.page-promotions__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-promotions__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFFF00; /* Register and Login font color for main title as it's a promotion page */
}

.page-promotions__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1rem;
}

.page-promotions__cta-button--register {
  background-color: #C30808;
  color: #FFFF00;
}

.page-promotions__cta-button--register:hover {
  background-color: #a30707;
  transform: translateY(-2px);
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  color: #017439;
}

.page-promotions__overview-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

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

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

.page-promotions__card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter changes image color */
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #017439;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  margin: 0 15px 20px;
  flex-grow: 1;
  color: #555555;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #017439;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-promotions__card-button:hover {
  background-color: #005a2e;
  transform: translateY(-1px);
}

.page-promotions__how-to-claim-section .page-promotions__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-promotions__how-to-claim-section .page-promotions__text-block {
  flex: 1;
  min-width: 300px;
}

.page-promotions__how-to-claim-section .page-promotions__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions__how-to-claim-section .page-promotions__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no CSS filter changes image color */
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-promotions__steps-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-promotions__steps-list li::before {
  content: attr(data-step);
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #017439;
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.page-promotions__step-title {
  color: #017439;
}

.page-promotions__cta-button--login {
  background-color: #C30808;
  color: #FFFF00;
  margin-top: 20px;
}

.page-promotions__cta-button--login:hover {
  background-color: #a30707;
  transform: translateY(-2px);
}

.page-promotions__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #017439;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-promotions__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
  .page-promotions__subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }
  .page-promotions__promotion-cards {
    grid-template-columns: 1fr;
  }
  .page-promotions__how-to-claim-section .page-promotions__content-wrapper {
    flex-direction: column;
  }
  .page-promotions__how-to-claim-section .page-promotions__text-block,
  .page-promotions__how-to-claim-section .page-promotions__image-block {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__hero-banner img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__card img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__how-to-claim-section .page-promotions__image-block img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-promotions__main-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
  .page-promotions__subtitle {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }
  .page-promotions__text-content {
    text-align: left;
  }
  .page-promotions__steps-list {
    margin-left: 0;
  }
  .page-promotions__steps-list li {
    padding-left: 35px;
  }
}

/* Ensure all content area images are at least 200px */
.page-promotions img {
  min-width: 200px;
  min-height: 200px;
}

/* Specific overrides for card images to ensure minimum size */
.page-promotions__card img {
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__how-to-claim-section .page-promotions__image-block img {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure contrast for text */
.page-promotions__hero-content p, .page-promotions__hero-content h1 {
  color: #FFFFFF; /* White on dark background */
}

.page-promotions__main-title {
  color: #FFFF00; /* Yellow on dark background */
}

.page-promotions__cta-button--register, .page-promotions__cta-button--login {
  background-color: #C30808;
  color: #FFFF00; /* Yellow on red background */
}

.page-promotions__section-title, .page-promotions__card-title, .page-promotions__step-title, .page-promotions__faq-question {
  color: #017439; /* Green on light background */
}

.page-promotions__text-content, .page-promotions__card-description, .page-promotions__faq-answer {
  color: #333333; /* Dark grey on light background */
}

.page-promotions__card-button {
  background-color: #017439;
  color: #FFFFFF; /* White on green background */
}