.page-promo {
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
  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__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #007bff; /* Primary color fallback */
  color: #ffffff;
  text-align: center;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.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, transform 0.2s ease;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #28a745; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #28a745;
}

.page-promo__button--primary:hover {
  background-color: #218838;
  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__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-promo__why-section,
.page-promo__types-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__vip-section,
.page-promo__mobile-section,
.page-promo__faq-section,
.page-promo__cta-section {
  padding: 60px 0;
}

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

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

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

.page-promo__feature-card:hover {
  transform: translateY(-10px);
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #007bff; /* Primary color */
  margin-bottom: 15px;
}

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

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

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

.page-promo__promo-card:hover {
  transform: translateY(-10px);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__promo-title {
  font-size: 1.6em;
  color: #007bff; /* Primary color */
  padding: 20px 20px 10px;
}

.page-promo__promo-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promo__promo-card .page-promo__button {
  margin: 0 20px 20px;
  background-color: #28a745;
  color: #ffffff;
  border: none;
  text-align: center;
  width: calc(100% - 40px);
}

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

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

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

.page-promo__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
}

.page-promo__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #f8f9fa;
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #007bff; /* Primary color */
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.page-promo__terms-section {
  background-color: #e9ecef;
  text-align: center;
}

.page-promo__terms-text {
  font-size: 1em;
  color: #444444;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promo__vip-section {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-promo__vip-section .page-promo__section-title,
.page-promo__vip-section .page-promo__section-intro,
.page-promo__vip-section .page-promo__vip-text {
  color: #ffffff;
}

.page-promo__vip-text {
  font-size: 1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promo__vip-section .page-promo__button--secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.page-promo__vip-section .page-promo__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-promo__mobile-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 0;
}

.page-promo__mobile-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 40px auto;
  display: block;
}

.page-promo__mobile-content {
  flex: 1;
  min-width: 300px;
  padding: 0 20px;
  text-align: center;
}

.page-promo__mobile-content .page-promo__section-title {
  text-align: center;
}

.page-promo__mobile-content .page-promo__section-intro,
.page-promo__mobile-content .page-promo__mobile-text {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__mobile-text {
  margin-bottom: 30px;
  color: #444444;
}

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

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #007bff; /* Primary color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  opacity: 0;
}

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  opacity: 1;
  margin-top: 15px;
}

.page-promo__cta-section {
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  text-align: center;
}

.page-promo__cta-section .page-promo__section-title,
.page-promo__cta-section .page-promo__section-intro {
  color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__mobile-section {
    flex-direction: column;
  }
  .page-promo__mobile-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .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: 80%;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__features-grid,
  .page-promo__promo-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__mobile-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
  /* Mobile image sizing for content area - MUST be >= 200px */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover;
  }
  .page-promo__promo-image {
    height: 200px; /* Ensure card images are not too small */
  }
  .page-promo__mobile-image {
    height: 300px; /* Ensure mobile section image is not too small */
  }
  .page-promo__cta-actions {
    flex-direction: column;
  }
  .page-promo__button--small {
    width: auto;
  }
  .page-promo__hero-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__section-intro {
    font-size: 0.9em;
  }
  .page-promo__step-card {
    padding: 25px;
  }
  .page-promo__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
}