.page-promotions {
  color: #333333; /* Default text color for light backgrounds */
  background-color: #FFFFFF; /* Default body background */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #FFFFFF;
  overflow: hidden;
}

.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;
}

.page-promotions__hero-content {
  max-width: 960px;
  width: 100%;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
}

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

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-promotions__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

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

.page-promotions__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a8cc7;
  border-color: #1a8cc7;
}

.page-promotions__btn-secondary--white-border {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promotions__btn-secondary--white-border:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

.page-promotions__section-padding {
  padding: 60px 20px;
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-promotions__text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
  text-align: justify;
  margin-bottom: 20px;
}

.page-promotions__text-block--white {
  color: #f0f0f0;
}

.page-promotions__text-block--note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
  color: #777777;
}

.page-promotions__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF; /* Deep background with light text */
}

.page-promotions__light-bg {
  background-color: #FFFFFF;
  color: #333333; /* Light background with dark text */
}

/* Featured Promotions Grid */
.page-promotions__featured-promos {
  padding: 80px 20px;
}

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

.page-promotions__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333; /* Ensure dark text on light card */
}

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

.page-promotions__card-image {
  width: 100%;
  max-width: 400px; /* Constrain image width within card */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How to Claim Steps */
.page-promotions__how-to-claim {
  padding: 80px 20px;
}

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

.page-promotions__step-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333; /* Ensure dark text on light card */
}

.page-promotions__step-icon {
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions__step-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Choose Features */
.page-promotions__why-choose {
  padding: 80px 20px;
}

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

.page-promotions__feature-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333; /* Ensure dark text on light card */
}

.page-promotions__feature-icon {
  width: 200px; /* Minimum size */
  height: 150px; /* Minimum size */
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-promotions__feature-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666666;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 20px;
}

.page-promotions__faq-list {
  max-width: 960px;
  margin: 0 auto;
}

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

.page-promotions__faq-item details > summary {
  list-style: none;
}

.page-promotions__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #26A9E0;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #f0f0f0;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #26A9E0;
  width: 20px;
  text-align: center;
}

.page-promotions__faq-answer {
  padding: 15px 25px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
}

/* Bottom CTA */
.page-promotions__cta-bottom {
  padding: 80px 20px;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    max-width: 800px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }
  .page-promotions__description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-promotions img,
  .page-promotions__promo-card img,
  .page-promotions__feature-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__hero-section,
  .page-promotions__content-area,
  .page-promotions__featured-promos,
  .page-promotions__how-to-claim,
  .page-promotions__terms-summary,
  .page-promotions__why-choose,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-promotions__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 0.9rem;
  }

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

  .page-promotions__promo-card,
  .page-promotions__step-card,
  .page-promotions__feature-card {
    padding: 20px;
  }

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

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

  .page-promotions__faq-answer {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__features-grid,
  .page-promotions__faq-list,
  .page-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}