.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

.page-promo__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero section */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-promo__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7; /* Slightly dim the image to make text pop */
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  max-width: 900px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--primary:hover {
  background-color: #e0a33a;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promo__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-promo__overview-section,
.page-promo__promo-categories,
.page-promo__how-to-claim,
.page-promo__terms-conditions,
.page-promo__maximizing-wins,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__overview-section {
  background-color: #F8F8F8;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

.page-promo__promo-categories {
  background-color: #FFFFFF;
}

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

.page-promo__category-card {
  background-color: #000000; /* Dark background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-promo__category-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  filter: brightness(0.8); /* Slightly darken image for better text contrast */
}

.page-promo__category-card h3,
.page-promo__category-card p,
.page-promo__category-card a {
  padding: 0 25px;
}

.page-promo__category-title {
  font-size: 1.8em;
  color: #FCBC45;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-promo__category-text {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__category-card .page-promo__button--small {
  margin: 0 25px 25px;
  text-align: center;
  align-self: flex-start; /* Align button to the left */
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-promo__category-card .page-promo__button--small:hover {
  background-color: #e0a33a;
  transform: translateY(-1px);
}

.page-promo__how-to-claim {
  background-color: #F8F8F8;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.page-promo__step-item:hover {
  transform: translateY(-5px);
}

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__step-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

.page-promo__step-text a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__step-text a:hover {
  text-decoration: underline;
}

.page-promo__claim-cta {
  margin-top: 60px;
}

.page-promo__terms-conditions,
.page-promo__maximizing-wins {
  background-color: #FFFFFF;
}

.page-promo__faq-section {
  background-color: #000000; /* Dark background for FAQ */
  color: #FFFFFF;
}

.page-promo__faq-section .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__faq-section .page-promo__section-title::after {
  background-color: #FCBC45;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promo__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.page-promo__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover,
.page-promo__faq-question.active {
  background-color: rgba(255, 255, 255, 0.15);
}

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

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

.page-promo__faq-answer {
  padding: 0 25px;
  background-color: rgba(0, 0, 0, 0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-promo__faq-answer p {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.7;
  margin: 0;
}

.page-promo__cta-section {
  background-color: #FCBC45;
  color: #000000;
  padding: 80px 0;
}

.page-promo__cta-section .page-promo__section-title {
  color: #000000;
}

.page-promo__cta-section .page-promo__section-title::after {
  background-color: #000000;
}

.page-promo__cta-section .page-promo__section-description {
  color: #333333;
  margin-bottom: 40px;
}

.page-promo__cta-section .page-promo__button--primary {
  background-color: #000000;
  color: #FCBC45;
  border: 2px solid #000000;
}

.page-promo__cta-section .page-promo__button--primary:hover {
  background-color: #333333;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
  .page-promo__categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 80px);
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__categories-grid,
  .page-promo__claim-steps {
    grid-template-columns: 1fr;
  }
  .page-promo__category-image,
  .page-promo img {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and do not overflow */
  }
  .page-promo__category-card .page-promo__button--small {
    width: calc(100% - 50px);
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
}

/* Ensure all images within .page-promo are at least 200px wide in content areas */
.page-promo img:not(.page-promo__hero-image) {
  min-width: 200px;
  min-height: 200px; /* Apply minimum height for content images */
}

/* Specific adjustment for category images to ensure min-height is respected while maintaining aspect ratio */
.page-promo__category-image {
  height: 220px; /* Maintain fixed height for consistency in cards */
  min-height: 200px; /* Ensure it meets minimum requirement */
}

/* Override filter for images that were meant to be original color */
.page-promo img {
  filter: none; /* Reset filter for all images */
}

/* Re-apply specific filter if needed for hero, but not for changing colors */
.page-promo__hero-image {
  filter: brightness(0.7); /* Example: dimming for text contrast, not color change */
}