.page-promo {
  background-color: #FFFFFF;
  color: #333333; /* Dark text for light background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark hero background */
  gap: 30px;
}

.page-promo__hero-content {
  max-width: 900px;
  margin-bottom: 20px;
}

.page-promo__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Gold accent for main title */
}

.page-promo__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  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: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-promo__hero-image {
  width: 100%;
  max-width: 1200px;
}

.page-promo__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-promo__current-promotions,
.page-promo__how-to-claim,
.page-promo__latest-details,
.page-promo__faq-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
}

.page-promo__section-intro {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

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

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

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

.page-promo__card-title {
  font-size: 1.6em;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: #FCBC45;
}

.page-promo__card-description {
  font-size: 1em;
  line-height: 1.6;
  margin: 0 20px 25px;
  flex-grow: 1;
}

.page-promo__button--claim {
  background-color: #FCBC45;
  color: #000000;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  text-align: center;
}

.page-promo__button--claim:hover {
  background-color: #E0A83D;
}

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

.page-promo__step-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

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

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

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

.page-promo__cta-button-container {
  text-align: center;
  margin-top: 40px;
}

.page-promo__button--view-all {
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-promo__button--view-all:hover {
  background-color: #333333;
}

.page-promo__details-card-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.page-promo__details-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  text-align: center;
}

.page-promo__details-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promo__details-title a {
  color: #FCBC45;
  text-decoration: none;
}

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

.page-promo__details-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-promo__button--details {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo__button--details:hover {
  background-color: #E0A83D;
}

.page-promo__faq-accordion {
  margin-top: 30px;
}

.page-promo__faq-item {
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  background-color: #F8F8F8;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #EFEFEF;
}

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

.page-promo__faq-question[aria-expanded="true"]::after {
  content: '-';
  transform: rotate(180deg);
}

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

.page-promo__faq-answer p {
  padding: 15px 0;
  line-height: 1.6;
  color: #555555;
}

.page-promo__faq-question[aria-expanded="true"] + .page-promo__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-bottom: 25px;
}

.page-promo__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
}

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

.page-promo__cta-section .page-promo__section-intro {
  color: #F0F0F0;
}

.page-promo__button--large-cta {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
  margin-top: 30px;
}

.page-promo__button--large-cta:hover {
  background-color: #E0A83D;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 2.8em;
  }

  .page-promo__section-title {
    font-size: 2.2em;
  }

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

  .page-promo__hero-section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-promo__main-title {
    font-size: 2.2em;
  }

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

  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-promo__section-intro {
    font-size: 0.95em;
  }

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

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

  .page-promo__promotion-card {
    margin-left: 0;
    margin-right: 0;
  }

  .page-promo__current-promotions,
  .page-promo__how-to-claim,
  .page-promo__latest-details,
  .page-promo__faq-section,
  .page-promo__cta-section {
    padding: 30px 15px;
  }

  .page-promo__hero-image img,
  .page-promo__card-image,
  .page-promo__details-card img,
  .page-promo__step-item img,
  .page-promo__faq-item img,
  .page-promo__cta-section img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive and not smaller than 200px display */
  .page-promo img {
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
    object-fit: cover;
  }
  .page-promo__card-image { height: 200px; }
  .page-promo__hero-image img { height: auto; }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__button--large-cta {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}