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

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

.page-promo__section-title {
  font-size: 2.5rem;
  color: #000080; /* Auxiliary dark blue */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-promo__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Main gold color */
  color: #000080; /* Dark blue text for contrast */
  border: 2px solid #FFD700;
}

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

.page-promo__button--secondary {
  background-color: #000080; /* Auxiliary dark blue */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #000080;
}

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

.page-promo__button--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  background-color: #FFD700;
  color: #000080;
  border: 1px solid #FFD700;
}

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

/* Hero Section */
.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #000080, #1a1a99); /* Dark blue gradient background */
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-top: 40px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-promo__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Highlights Section */
.page-promo__highlights-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

.page-promo__highlight-card:hover {
  transform: translateY(-5px);
}

.page-promo__highlight-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promo__highlight-title {
  font-size: 1.8rem;
  color: #000080;
  margin-bottom: 15px;
}

.page-promo__highlight-description {
  font-size: 1rem;
  color: #666666;
}

/* Current Promos Section */
.page-promo__current-promos-section {
  padding: 80px 0;
  background-color: #eeeeee;
}

.page-promo__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.page-promo__promo-details {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promo__promo-title {
  font-size: 2rem;
  color: #000080;
  margin-bottom: 15px;
}

.page-promo__promo-title a {
  color: #000080;
  text-decoration: none;
}

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

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

/* How to Claim Section */
.page-promo__how-to-claim-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.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;
  position: relative;
  overflow: hidden;
}

.page-promo__step-icon {
  font-size: 3rem;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-promo__step-title {
  font-size: 1.6rem;
  color: #000080;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #eeeeee;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.2rem;
  color: #000080;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) 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-bottom: 20px;
  color: #555555;
}

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

.page-promo__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promo__cta-bottom p {
  font-size: 1.3rem;
  color: #000080;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-promo__promo-card {
    flex-direction: row;
  }

  .page-promo__promo-image {
    width: 40%;
    height: auto;
  }

  .page-promo__promo-details {
    width: 60%;
  }

  .page-promo__promo-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}

@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 40px 15px;
  }

  .page-promo__hero-title {
    font-size: 2.5rem;
  }

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

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

  .page-promo__section-intro {
    font-size: 1rem;
  }

  .page-promo__highlights-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card {
    flex-direction: column;
  }

  .page-promo__promo-image {
    width: 100%;
    height: auto;
  }

  .page-promo__promo-details {
    width: 100%;
  }

  .page-promo__promo-title {
    font-size: 1.5rem;
  }

  .page-promo__promo-description {
    font-size: 0.95rem;
  }

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

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

  .page-promo__faq-question::after {
    right: 20px;
  }

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

  .page-promo__hero-image,
  .page-promo__highlight-image,
  .page-promo__promo-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure content area images are responsive and not too small */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }
}