.page-promotions {
  color: #ffffff; /* Body background #111 (dark), so text must be light */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #111; /* Match body background for consistency */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__hero-content {
  max-width: 800px;
  z-index: 1;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 15px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__tagline {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.05rem;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
  background-color: #1e87b0;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: #EA7C07; /* Login color for secondary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 0;
}

.page-promotions__introduction-section {
  background-color: #FFFFFF; /* White background for light text */
  color: #333333; /* Dark text for light background */
}

.page-promotions__highlight-promotions-section {
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #ffffff; /* Light text for dark background */
}

.page-promotions__how-to-claim-section {
  background-color: #FFFFFF; /* White background for light text */
  color: #333333; /* Dark text for light background */
}

.page-promotions__why-choose-section {
  background-color: #1a1a1a; /* Darker background for contrast */
  color: #ffffff; /* Light text for dark background */
}

.page-promotions__faq-section {
  background-color: #FFFFFF; /* White background for light text */
  color: #333333; /* Dark text for light background */
}

.page-promotions__cta-final-section {
  background-color: #26A9E0; /* Primary brand color background */
  color: #ffffff; /* White text for brand color background */
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: bold;
  margin-bottom: 30px;
  color: inherit;
}

.page-promotions__introduction-section .page-promotions__section-title,
.page-promotions__how-to-claim-section .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-title {
  color: #000000; /* Darker title for light sections */
}

.page-promotions__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

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

.page-promotions__promo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  color: #ffffff;
}

.page-promotions__promo-card .page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__promo-card .page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions__promo-card .page-promotions__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn-secondary {
  margin-top: auto; /* Push button to bottom */
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-promotions__step-title {
  font-size: 1.35rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-promotions__step-description a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-promotions__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-promotions__feature-icon {
  width: 200px; /* Min size 200x200 */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions__feature-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-promotions__faq-item[open] {
  background: #eef7fc; /* Lighter background when open */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-promotions__tagline {
    font-size: 1rem;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 25px;
  }

  .page-promotions__text-block {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .page-promotions__promo-grid,
  .page-promotions__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card,
  .page-promotions__feature-item {
    padding: 25px;
  }

  .page-promotions__promo-card .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__promo-card .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__feature-icon {
    width: 150px;
    height: 120px;
  }

  .page-promotions__feature-title {
    font-size: 1.2rem;
  }

  .page-promotions__feature-description {
    font-size: 0.9rem;
  }

  .page-promotions__steps-list,
  .page-promotions__faq-list {
    margin-top: 30px;
  }

  .page-promotions__step-item,
  .page-promotions__faq-item {
    padding: 20px;
    margin-bottom: 10px;
  }

  .page-promotions__step-title {
    font-size: 1.2rem;
  }

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

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Image responsiveness for mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all containers with images/buttons adapt */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__feature-item,
  .page-promotions__hero-image-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent overflow for images/buttons */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__promo-grid,
  .page-promotions__feature-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}