.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); /* Ensure content is not hidden by fixed header */
}

.page-promo__hero-section {
  background-color: #000000; /* Primary color for hero background */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-promo__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight color for title */
  font-weight: bold;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
  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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

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

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

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

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

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

.page-promo__promotions-grid,
.page-promo__how-to-claim,
.page-promo__why-ahh88,
.page-promo__faq-section,
.page-promo__final-cta {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-promo__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__promotion-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promo__card-image {
  width: 100%;
  height: auto;
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-promo__card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--card {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 12px 25px;
  font-size: 0.95em;
}

.page-promo__button--card:hover {
  background-color: #e0a53b;
}

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

.page-promo__step-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #000000;
  color: #FCBC45;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promo__step-text {
  color: #666666;
  font-size: 0.95em;
}

.page-promo__action-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promo__button--full-width {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 18px 40px;
  font-size: 1.2em;
  min-width: 300px;
}

.page-promo__button--full-width:hover {
  background-color: #e0a53b;
}

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

.page-promo__feature-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__feature-icon {
  width: 200px; /* Min size for content images */
  height: 150px; /* Min size for content images */
  object-fit: contain; /* Use contain for icons to prevent stretching */
  margin-bottom: 20px;
}

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

.page-promo__feature-text {
  color: #666666;
  font-size: 0.95em;
}

.page-promo__faq-container {
  margin-top: 40px;
}

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

.page-promo__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  font-weight: bold;
}

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

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

.page-promo__faq-answer {
  padding: 0 25px 20px;
  color: #555555;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
}

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

.page-promo__final-cta {
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 10px;
  margin-bottom: 80px;
}

.page-promo__final-cta .page-promo__section-title {
  color: #FCBC45;
}

.page-promo__final-cta .page-promo__section-description {
  color: #F0F0F0;
}

.page-promo__button--large {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  padding: 20px 50px;
  font-size: 1.3em;
  margin-top: 30px;
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px;
    gap: 30px;
  }
  .page-promo__hero-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__promotions-grid, 
  .page-promo__how-to-claim, 
  .page-promo__why-ahh88, 
  .page-promo__faq-section, 
  .page-promo__final-cta {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__grid-container,
  .page-promo__steps-container,
  .page-promo__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promo__card-title {
    font-size: 1.3em;
  }
  .page-promo__button--full-width,
  .page-promo__button--large {
    width: 100%;
    min-width: unset;
    padding: 15px 25px;
    font-size: 1.1em;
  }
  
  /* Critical: Ensure images do not overflow on mobile */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  
  .page-promo__feature-icon {
    width: 100%; /* Adjust to fit card, still min 200px due to HTML attribute */
    height: auto;
    max-width: 250px; /* Example max-width to control size within card */
    margin-left: auto;
    margin-right: auto;
  }
  
  .page-promo__hero-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__faq-question,
  .page-promo__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__faq-question::after {
    right: 15px;
  }
}