.page-promotions {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for the first section */
  overflow-x: hidden;
}

.page-promotions__hero-section {
  position: relative;
  text-align: center;
  padding-bottom: 40px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(to right, #FF8C1A, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FF8C1A; /* Fallback for browsers not supporting gradient text */
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #A84F0C;
  min-width: 200px;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255, 140, 26, 0.4);
}

.page-promotions__cta-button--centered {
  display: block;
  margin: 40px auto;
  max-width: 250px;
}

.page-promotions__section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  background: linear-gradient(to right, #FF8C1A, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FF8C1A; /* Fallback */
}

.page-promotions__grid-section {
  padding: 40px 20px;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__promo-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #A84F0C;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 26, 0.5);
}

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

.page-promotions__card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 200px); /* Adjust based on image height */
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFA53A;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 1px solid #A84F0C;
  text-align: center;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
}

.page-promotions__benefits-section {
  padding: 60px 20px;
}

.page-promotions__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__benefit-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Enforcing minimum size for content images */
  min-height: 200px;
  width: 100%; /* Make it responsive */
  height: auto;
}

.page-promotions__benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-promotions__benefit-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

.page-promotions__how-to-claim-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #17191F;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #A84F0C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
}

.page-promotions__step-content {
  text-align: left;
}

.page-promotions__step-title {
  font-size: 1.2rem;
  color: #FFA53A;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  color: #FFF3E6;
}

.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-container {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: #17191F;
  color: #FFF3E6;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #2a2c33;
}

.page-promotions__faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: #FFA53A;
}

.page-promotions__faq-question[aria-expanded="true"] .page-promotions__faq-icon {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-answer p {
  margin-top: 0;
  margin-bottom: 20px;
  color: #FFF3E6;
}

/* Expanded state for JS */
.page-promotions__faq-answer.is-open {
  max-height: 300px; /* Sufficient height for content */
  padding-bottom: 20px;
}

@media (max-width: 849px) {
  .page-promotions__hero-section {
    padding-bottom: 20px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

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

  .page-promotions__cta-button {
    padding: 12px 25px;
    min-width: 180px;
  }

  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__card-button {
    padding: 8px 15px;
  }

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

  .page-promotions__benefit-item {
    padding: 25px;
  }

  .page-promotions__benefit-icon {
    width: 200px; /* Ensure minimum size */
    height: auto;
  }

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

  .page-promotions__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promotions__step-content {
    text-align: center;
  }

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 549px) {
  .page-promotions__hero-section {
    padding-top: 0; /* Rely on body padding-top */
  }

  .page-promotions__main-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .page-promotions__hero-description {
    font-size: 0.9rem;
  }

  .page-promotions__cta-button {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .page-promotions__card-title {
    font-size: 1.1rem;
  }

  .page-promotions__card-description {
    font-size: 0.85rem;
  }

  .page-promotions__card-button {
    width: 100%;
  }

  .page-promotions__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .page-promotions__benefit-icon {
    width: 200px; /* Ensure minimum size */
    height: auto;
  }

  .page-promotions__faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .page-promotions__faq-answer p {
    font-size: 0.85rem;
  }
}

/* Enforce image display size not smaller than HTML attributes */
.page-promotions img:not(.page-promotions__hero-image) {
  max-width: 100%;
  height: auto;
  display: block;
  /* Ensure content area images are not displayed smaller than 200px */
  min-width: 200px;
  min-height: 200px;
  object-fit: cover; /* Added for better image handling */
}

/* Specific override for benefit icons to ensure they are not too large but still meet min size */
.page-promotions__benefit-icon {
  width: 80px; /* Display width */
  height: 80px; /* Display height */
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Min actual image resource size */
  min-height: 200px;
  object-fit: contain; /* Contain to show full icon */
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__hero-image {
    width: 100%;
    height: auto;
  }
  .page-promotions__promo-image {
    width: 100%;
    height: auto;
  }
  .page-promotions__benefit-icon {
    width: 100px; /* Adjusted display size for mobile for benefit icons */
    height: auto;
    min-width: 200px; /* Still require min image resource size */
    min-height: 200px;
  }
}