.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  padding-top: 10px; /* Small top padding, body handles main offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

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

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

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__grid-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.2em;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__section-subtitle {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 40px;
}

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

.page-promotions__promo-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.2s ease-in-out;
}

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

.page-promotions__how-to-claim-content {
  display: flex;
  gap: 30px;
  align-items: center;
  text-align: left;
  margin-top: 40px;
}

.page-promotions__how-to-claim-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #3A2A12;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions__steps {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__step-item {
  background-color: #111111;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  position: relative;
  padding-left: 60px;
}

.page-promotions__step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #F2C14E;
  color: #0A0A0A;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-promotions__step-title {
  color: #FFD36B;
  font-size: 1.3em;
  margin-bottom: 5px;
}

.page-promotions__step-description {
  color: #FFF6D6;
  font-size: 0.95em;
}

.page-promotions__cta-button--bottom {
  margin-top: 40px;
}

.page-promotions__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__faq-item {
  background-color: #111111;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  text-align: left;
}

.page-promotions__faq-question {
  color: #F2C14E;
  font-size: 1.2em;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-answer {
  color: #FFF6D6;
  font-size: 0.95em;
  display: none; /* Hidden by default, toggled by JS */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__section-subtitle {
    font-size: 1em;
  }

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

  .page-promotions__promo-card {
    margin: 0 10px;
  }

  .page-promotions__how-to-claim-content {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions__how-to-claim-image,
  .page-promotions__steps {
    width: 100%;
    min-width: 200px;
  }

  .page-promotions__step-item {
    padding-left: 20px;
    padding-top: 50px;
  }

  .page-promotions__step-number {
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }

  .page-promotions__faq-list {
    margin: 0 10px;
  }

  .page-promotions__faq-question,
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }

  .page-promotions__hero-section img,
  .page-promotions__grid-section img,
  .page-promotions__how-to-claim-section img,
  .page-promotions__faq-section img {
    max-width: 100%;
    height: auto;
  }

  .page-promotions__promo-card .page-promotions__card-image {
    height: 200px; /* Adjust height for smaller screens */
  }
}

/* Ensure all content images meet minimum size requirements */
.page-promotions__promo-card-image,
.page-promotions__how-to-claim-image {
  min-width: 200px;
  min-height: 200px;
}