.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-promo__hero-section {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text for dark background */
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-promo__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

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

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

.page-promo__hero-button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45;
}

.page-promo__hero-button--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-promo__hero-button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* White text */
  border: 2px solid #FFFFFF;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.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-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-promo__section-text--note {
  font-style: italic;
  font-size: 0.95em;
  margin-top: 40px;
}

.page-promo__overview-section,
.page-promo__featured-section,
.page-promo__why-section,
.page-promo__how-to-claim-section,
.page-promo__faq-section,
.page-promo__details-list-section,
.page-promo__cta-section {
  padding: 80px 0;
}

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

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

.page-promo__promo-type-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-type-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-promo__promo-type-description {
  font-size: 1em;
  color: #666666;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-promo__promo-card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__promo-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-promo__promo-card-title a:hover {
  color: #FCBC45;
}

.page-promo__promo-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__promo-card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.page-promo__promo-card-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

.page-promo__why-section .page-promo__section-text {
  color: #cccccc;
}

.page-promo__why-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-promo__why-list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FCBC45;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promo__why-list-item strong {
  color: #FCBC45;
}

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

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

.page-promo__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FCBC45;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-promo__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__step-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-promo__step-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 50px auto 0 auto;
}

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

.page-promo__faq-question {
  background-color: #f5f5f5;
  padding: 20px 25px;
  font-size: 1.2em;
  color: #000000;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

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

.page-promo__faq-answer p {
  margin: 0;
  color: #666666;
}

.page-promo__details-list-section {
  background-color: #f8f8f8;
}

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

.page-promo__detail-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__detail-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

.page-promo__detail-card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-promo__detail-card-title a {
  color: inherit;
  text-decoration: none;
}

.page-promo__detail-card-title a:hover {
  color: #FCBC45;
}

.page-promo__detail-card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__detail-card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.page-promo__detail-card-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

.page-promo__cta-section .page-promo__section-text {
  color: #cccccc;
}

.page-promo__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

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

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

.page-promo__cta-button--primary:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

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

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

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

@media (max-width: 768px) {
  .page-promo__hero-content {
    max-width: 90%;
  }

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

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

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

  .page-promo__hero-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-promo__promo-types, .page-promo__featured-grid, .page-promo__steps-grid, .page-promo__details-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__why-list-item {
    font-size: 1em;
  }

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

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

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

  .page-promo__cta-button {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-promo__faq-answer {
    padding: 15px 20px;
  }

  .page-promo__promo-type-image, .page-promo__promo-card-image, .page-promo__detail-card-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all images within .page-promo are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  .page-promo {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.6em;
  }

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

  .page-promo__hero-button {
    padding: 12px 20px;
    font-size: 1em;
  }

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

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

  .page-promo__promo-type-card, .page-promo__promo-card, .page-promo__step-card, .page-promo__detail-card {
    padding: 20px;
  }

  .page-promo__promo-type-title, .page-promo__promo-card-title, .page-promo__step-title, .page-promo__detail-card-title {
    font-size: 1.4em;
  }

  .page-promo__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
}