/* style/promo.css */
.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure 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: #0A2463; /* Primary color background */
  color: #ffffff; /* White text for dark background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-promo__overview-section,
.page-promo__promo-grid-section,
.page-promo__vip-section,
.page-promo__how-to-claim-section,
.page-promo__faq-section,
.page-promo__cta-bottom-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promo__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

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

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

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

.page-promo__card-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #FFD700;
  color: #0A2463;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #e6c200;
}

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

.page-promo__vip-section .page-promo__section-title {
  color: #FFD700;
}

.page-promo__vip-section .page-promo__section-title::after {
  background-color: #ffffff;
}

.page-promo__vip-section .page-promo__text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-promo__list-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promo__list-description a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

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

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

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

.page-promo__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
}

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

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

.page-promo__cta-bottom-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

.page-promo__cta-bottom-section .page-promo__section-title::after {
  background-color: #ffffff;
}

.page-promo__cta-bottom-section .page-promo__text-block {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-promo__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }

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

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

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

  .page-promo__promo-card {
    margin-bottom: 20px;
  }

  .page-promo__card-image {
    height: 200px;
  }

  /* Ensure images in content area are responsive and not smaller than 200px */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promo__promo-card .page-promo__card-image {
    min-width: unset; /* Override min-width for card images to allow scaling */
    min-height: unset;
    height: auto;
  }
}

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

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

  .page-promo__text-block {
    font-size: 0.95em;
  }

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

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

  .page-promo__faq-question {
    font-size: 1.1em;
  }
}