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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  text-align: center;
  background-color: #F4F7FB; /* Body background color */
}

.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;
  max-height: 600px; /* Limit hero image height */
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 20px auto 0 auto;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive H1 font size */
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__subtitle {
  font-size: 1.1em;
  color: #1F2D3D;
  margin-bottom: 30px;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-promotions__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
}

.page-promotions__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.2);
}

.page-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #F4F7FB; /* Ensure content area has a light background */
  color: #1F2D3D;
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-promotions__section-title--white {
  color: #ffffff;
}

.page-promotions__overview-section p,
.page-promotions__how-to-claim p,
.page-promotions__why-choose p {
  font-size: 1.05em;
  margin-bottom: 1em;
  color: #1F2D3D;
}

.page-promotions__highlight {
  font-weight: 600;
  color: #2F6BFF;
}

.page-promotions__featured-promos {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

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

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

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

.page-promotions__card-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 15px;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
}

.page-promotions__how-to-claim {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-promotions__steps-list li {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #2F6BFF;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.3em;
}

.page-promotions__step-title {
  font-size: 1.3em;
  color: #1F2D3D;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-promotions__terms-conditions {
  padding: 60px 0;
  background-color: #2F6BFF; /* Dark background */
  color: #ffffff; /* White text for dark background */
}

.page-promotions__terms-conditions .page-promotions__section-title {
  color: #ffffff;
}

.page-promotions__terms-conditions p {
  color: #ffffff;
  font-size: 1.05em;
  margin-bottom: 1.5em;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__terms-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #6FA3FF;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #ffffff;
}

.page-promotions__list-item-highlight {
  font-weight: 600;
  color: #A5C4FF;
}

.page-promotions__text-link {
  color: #A5C4FF;
  text-decoration: underline;
}

.page-promotions__text-link:hover {
  color: #ffffff;
}

.page-promotions__why-choose {
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-promotions__feature-card.page-promotions__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  border: 1px solid #D6E2FF;
  color: #1F2D3D;
}

.page-promotions__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__feature-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-promotions__faq-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #F4F7FB;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #1F2D3D;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #1F2D3D;
  cursor: pointer;
  position: relative;
  list-style: none;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: 700;
  color: #2F6BFF;
  line-height: 1;
  margin-left: 15px;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #1F2D3D;
}

.page-promotions__faq-answer p {
  margin-bottom: 1em;
}

.page-promotions__cta-bottom {
  padding: 60px 0;
  background-color: #2F6BFF; /* Dark background */
  color: #ffffff;
  text-align: center;
}

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

.page-promotions__cta-bottom .page-promotions__subtitle {
  color: #ffffff;
}

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

  .page-promotions__main-title {
    font-size: 2.2em;
  }

  .page-promotions__subtitle {
    font-size: 1em;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__content-area,
  .page-promotions__featured-promos .page-promotions__content-area,
  .page-promotions__how-to-claim .page-promotions__content-area,
  .page-promotions__terms-conditions .page-promotions__content-area,
  .page-promotions__why-choose .page-promotions__content-area,
  .page-promotions__faq-section .page-promotions__content-area,
  .page-promotions__cta-bottom .page-promotions__cta-content {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

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

  .page-promotions__card-image,
  .page-promotions__feature-image {
    height: 150px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-promotions__steps-list li {
    padding-left: 20px;
    padding-top: 60px;
  }

  .page-promotions__steps-list li::before {
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
  }

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

  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }
}