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

.page-promotions__hero-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per rule */
  padding-bottom: 30px; /* Space below hero content */
}

.page-promotions__hero-image-container {
  width: 100%;
  max-width: 100%;
}

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

.page-promotions__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 30px; /* Normal margin, no overlap */
  background: linear-gradient(0deg, rgba(183,28,28,0.9) 0%, rgba(183,28,28,0.7) 100%);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F4D34D; /* Gold color for main title */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-promotions__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 40px;
  color: #F4D34D;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

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

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

.page-promotions__promo-card,
.page-promotions__step-card {
  background-color: #D32F2F;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #7A0E0E;
}

.page-promotions__promo-card:hover,
.page-promotions__step-card:hover {
  transform: translateY(-5px);
}

.page-promotions__promo-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 2px solid #7A0E0E;
}

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

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

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

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  text-align: center;
  transition: background 0.3s ease;
}

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

.page-promotions__step-card {
  text-align: center;
  padding: 30px;
  background-color: #D32F2F;
  border: 1px solid #7A0E0E;
}

.page-promotions__step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #F4D34D;
  color: #7A0E0E;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-promotions__step-title {
  font-size: 1.8em;
  color: #F4D34D;
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 1em;
  margin-bottom: 25px;
}

.page-promotions__step-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background 0.3s ease;
}

.page-promotions__step-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-promotions__terms-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #7A0E0E;
  border-radius: 15px;
  margin-top: 50px;
}

.page-promotions__terms-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #FFF5E1;
}

.page-promotions__terms-link {
  display: inline-block;
  color: #F4D34D;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
  color: #FFD86A;
}

.page-promotions__faq-section {
  padding-top: 50px;
  padding-bottom: 80px;
}

.page-promotions__faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #D32F2F;
  border: 1px solid #7A0E0E;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  background-color: #E53935;
  color: #FFF5E1;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #7A0E0E;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active {
  background-color: #C91F17;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.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.open {
  max-height: 300px; /* Adjust based on content */
  padding: 15px 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  color: #FFF5E1;
  font-size: 1em;
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: 20px;
    padding: 20px;
  }

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

  .page-promotions__intro-text {
    font-size: 1em;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
    margin: 40px 0 30px;
  }

  .page-promotions__grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Ensure all content images are responsive and not smaller than 200px display */
  .page-promotions__promo-card img,
  .page-promotions__step-card img,
  .page-promotions__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min display size for content images */
    min-height: 200px;
  }
  /* Specific adjustment for promo-image to allow natural height while respecting min-height */
  .page-promotions__promo-image {
    height: auto; /* Let height adjust naturally */
    min-height: 180px; /* Allow a slightly smaller min-height for cards if needed for layout, but still above 200px if possible */
  }

  .page-promotions__card-title {
    font-size: 1.3em;
  }

  .page-promotions__step-title {
    font-size: 1.5em;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}