.page-promotions {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-promotions__section-description {
  font-size: 18px;
  color: #1F2D3D;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promotions__section-description--white {
  color: #f0f0f0;
}

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

.page-promotions__text-link--white {
  color: #A5C4FF;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background: linear-gradient(180deg, #2F6BFF 0%, #0047b3 100%); /* Adjusted for dark bg */
  color: #ffffff;
  text-align: center;
}

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

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

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
  margin-top: 150px; /* Space for image above */
}

.page-promotions__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-promotions__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-promotions__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: #ffffff;
  color: #2F6BFF;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #2F6BFF;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-left: 20px;
}

.page-promotions__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__cta-buttons--centered {
  margin: 40px auto 0 auto;
  max-width: fit-content;
}

/* Why Choose Section */
.page-promotions__why-choose {
  background: #F4F7FB;
}

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

.page-promotions__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-promotions__feature-title {
  font-size: 24px;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  font-size: 16px;
  color: #333333;
}

.page-promotions__main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-promotions__main-image--center {
  margin-left: auto;
  margin-right: auto;
}

/* Offer Types Section */
.page-promotions__offer-types {
  background: #2F6BFF;
  color: #ffffff;
}

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

.page-promotions__offer-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions__offer-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-promotions__offer-card-text {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-promotions__offer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__offer-list li {
  margin-bottom: 10px;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 1.4;
}

.page-promotions__offer-sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #A5C4FF;
  display: inline;
  margin-right: 8px;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background: #F4F7FB;
}

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

.page-promotions__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  position: relative;
  padding-top: 60px;
}

.page-promotions__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #2F6BFF;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

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

.page-promotions__step-text {
  font-size: 16px;
  color: #333333;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  background: #ffffff;
}

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

.page-promotions__term-item {
  background: #F4F7FB;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #D6E2FF;
}

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

.page-promotions__term-text {
  font-size: 16px;
  color: #333333;
}

/* Featured Offers Section */
.page-promotions__featured-offers {
  background: #F4F7FB;
}

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

.page-promotions__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #1F2D3D;
  margin: 20px 20px 10px 20px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 16px;
  color: #333333;
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-promotions__offer-card-item .page-promotions__btn-primary {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
  box-sizing: border-box;
  text-align: center;
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #D6E2FF;
  overflow: hidden;
  background: #FFFFFF;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}
details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #F4F7FB;
}
.page-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #1F2D3D;
  text-align: left;
}
.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #333333;
}

/* CTA Section */
.page-promotions__cta-section {
  background: #2F6BFF;
  color: #ffffff;
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__container {
    padding: 20px 30px;
  }
  .page-promotions__hero-content {
    margin-top: 100px;
  }
  .page-promotions__section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    min-height: 500px;
    padding-top: 10px !important;
  }
  .page-promotions__hero-image img {
    object-fit: contain !important; /* HERO 主图区域 */
    aspect-ratio: unset !important;
    position: relative;
    height: auto;
    max-height: 250px;
  }
  .page-promotions__hero-content {
    margin-top: 20px; /* Adjust spacing for mobile */
    padding: 30px 15px;
  }
  .page-promotions__hero-title {
    font-size: clamp(28px, 8vw, 36px);
  }
  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 15px;
  }
  .page-promotions__section-description {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  /* Buttons & CTA */
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .page-promotions__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 15px;
  }
  .page-promotions__cta-buttons--centered {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* General Images */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__main-image {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Why Choose Section */
  .page-promotions__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__feature-item {
    padding: 25px;
  }
  .page-promotions__feature-title {
    font-size: 20px;
  }

  /* Offer Types Section */
  .page-promotions__offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__offer-card {
    padding: 25px;
  }
  .page-promotions__offer-card-title {
    font-size: 20px;
  }

  /* How to Claim Section */
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__step-item {
    padding: 50px 25px 25px 25px;
  }
  .page-promotions__step-number {
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .page-promotions__step-title {
    font-size: 18px;
  }

  /* Terms & Conditions Section */
  .page-promotions__terms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__term-item {
    padding: 20px;
  }
  .page-promotions__term-title {
    font-size: 18px;
  }

  /* Featured Offers Section */
  .page-promotions__offers-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 18px;
    margin: 15px 15px 8px 15px;
  }
  .page-promotions__card-text {
    font-size: 15px;
    margin: 0 15px 15px 15px;
  }
  .page-promotions__offer-card-item .page-promotions__btn-primary {
    margin: 0 15px 15px 15px;
    width: calc(100% - 30px);
  }

  /* FAQ Section */
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px !important;
  }
  .page-promotions__faq-qtext {
    font-size: 15px !important;
  }
  .page-promotions__faq-toggle {
    font-size: 20px !important;
    width: 24px !important;
    height: 24px !important;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px !important;
  }

  /* Content area max-width for overflow prevention */
  .page-promotions__container,
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__offers-card-grid,
  .page-promotions__offer-grid,
  .page-promotions__steps-grid,
  .page-promotions__terms-grid,
  .page-promotions__features-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-promotions__hero-section {
    overflow-x: hidden !important;
  }
  .page-promotions__hero-image {
    position: relative !important; /* Adjust image positioning for mobile */
    opacity: 1 !important;
    margin-bottom: 20px;
  }
}