.page-promo {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  background-color: #FFFFFF;
}

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

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.page-promo__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.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;
  border: none;
  cursor: pointer;
}

.page-promo__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-promo__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-promo__button--claim {
  background-color: #FCBC45;
  color: #000000;
}

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

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

.page-promo__button--view-details:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-promo__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-promo__text-content {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo__about-promotions {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-promo__featured-promos {
  padding: 60px 0;
}

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

.page-promo__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #000000;
  margin: 0 20px 15px;
}

.page-promo__card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

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

.page-promo__how-to-claim {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-promo__claim-steps li {
  text-align: center;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__step-icon {
  margin-bottom: 20px;
}

.page-promo__step-icon img {
   /* Min 200x200px for content images, but these are small decorative icons. Adjusting to 100px here as per the prompt's `width="100" height="100"` in HTML for `img` within `step-icon`. However, the global rule states *any* image in content area must be >= 200px. This is a conflict. I will make sure the image placeholder description requests a size >= 200px, and the HTML `width`/`height` attributes reflect the *display size*. If the display size is 100px, this violates the global rule. I will adjust the HTML to ensure these decorative images are also >= 200px display size, and the CSS reflects that. Let's make them 200x200 to be safe. */
  
  border-radius: 50%;
  object-fit: cover;
}

.page-promo__claim-steps h3 {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__claim-steps p {
  color: #555555;
}

.page-promo__cta-small {
  text-align: center;
  margin-top: 40px;
}

.page-promo__why-choose {
  padding: 60px 0;
}

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

.page-promo__features-list li {
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-promo__features-list li img {
   /* Display size. Image placeholder will be larger. */
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-promo__features-list h3 {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__features-list p {
  color: #555555;
}

.page-promo__latest-offers-list {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-promo__detail-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

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

.page-promo__detail-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

.page-promo__detail-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__faq-section {
  padding: 60px 0;
}

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

.page-promo__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  cursor: pointer;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px 25px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #EFEFEF;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  transform: rotate(45deg);
}

.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-item.active .page-promo__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

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

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

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

.page-promo__cta-section .page-promo__text-content {
  color: #F0F0F0;
  max-width: 800px;
  margin: 20px auto 40px;
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    flex-direction: column;
    padding-top: var(--header-offset, 120px);
  }

  .page-promo__hero-content {
    padding: 60px 20px;
  }

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

  .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__section-title {
    font-size: 2em;
  }

  .page-promo__promo-grid,
  .page-promo__claim-steps,
  .page-promo__features-list {
    grid-template-columns: 1fr;
  }

  .page-promo__promo-card img,
  .page-promo__claim-steps li img,
  .page-promo__features-list li img {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }

  /* IMPORTANT: All content area images must not display smaller than 200px */
  .page-promo__promo-card img {
    height: 200px; /* Minimum display height */
  }
  
  .page-promo__claim-steps li .page-promo__step-icon img,
  .page-promo__features-list li img {
    width: 200px; /* Enforce minimum display width */
    height: 200px; /* Enforce minimum display height */
    object-fit: contain; /* Adjust object-fit for potentially larger images in smaller display area */
    margin: 0 auto 15px;
  }

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

  .page-promo__faq-item.active .page-promo__faq-answer {
    max-height: 300px; /* Allow more height for mobile content */
  }

  .page-promo__cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-content {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}