.page-promotions {
  color: #f5f5f5;
  background-color: #000000;
  font-family: Arial, sans-serif;
  padding-bottom: 40px;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  background-color: #000000; /* Ensure black background */
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-promotions__main-title {
  font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
  color: #FCBC45;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  color: #e5e5e5;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__hero-cta,
.page-promotions__card-cta,
.page-promotions__view-all-cta {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-promotions__hero-cta:hover,
.page-promotions__card-cta:hover,
.page-promotions__view-all-cta:hover {
  background-color: #FCBC45;
  transform: translateY(-2px);
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #e5e5e5;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-promotions__promotion-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #f5f5f5;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-promotions__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

.page-promotions__card-text {
  font-size: 1em;
  color: #e5e5e5;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.page-promotions__card-cta {
  align-self: flex-start;
  margin: 0 20px 20px 20px;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions__how-to-claim-section {
  text-align: center;
}

.page-promotions__steps-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-promotions__step-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 25px;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
}

.page-promotions__step-number {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-text {
  font-size: 1em;
  color: #f5f5f5;
  line-height: 1.5;
}

.page-promotions__view-all-cta {
  margin-top: 20px;
}

.page-promotions__faq-section {
  background-color: #000000;
}

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

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

.page-promotions__faq-answer {
  font-size: 1em;
  color: #e5e5e5;
  line-height: 1.6;
  /* Initially hidden, can be toggled by JS */
  /* display: none; */
}

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

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

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

  .page-promotions__hero-cta {
    padding: 12px 24px;
    font-size: 0.9em;
  }

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

  .page-promotions__section-description {
    font-size: 0.95em;
  }

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

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

  .page-promotions__card-text {
    font-size: 0.9em;
  }

  .page-promotions__steps-container {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__step-card {
    max-width: 90%;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
  }

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

  /* Mobile content area image constraint */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section,
  .page-promotions__current-promotions-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}