.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-promotions__hero-section {
  position: relative;
  padding-top: 10px; /* Aligned with fixed header spacing rule */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: #F4F7FB;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
  background-color: #F4F7FB; /* Ensure content is on a light background */
  color: #1F2D3D;
}

.page-promotions__hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

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

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

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

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

.page-promotions__btn-secondary {
  background: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn-secondary:hover {
  background: #F4F7FB;
  color: #2558cc;
  border-color: #2558cc;
}

.page-promotions__btn-text-link {
  color: #2F6BFF;
  background: transparent;
  border: none;
  padding: 8px 0;
  font-size: 0.95rem;
  text-decoration: underline;
}

.page-promotions__btn-text-link:hover {
  color: #4A8BFF;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 25px;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__featured-promos-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
}

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

.page-promotions__promo-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #1F2D3D;
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.page-promotions__promo-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  margin: 20px 20px 10px 20px;
}

.page-promotions__promo-card p {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
  margin: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn-text-link {
  margin: 0 20px 20px 20px;
  align-self: flex-start;
}

.page-promotions__how-to-claim-section {
  padding: 60px 0;
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff;
}

.page-promotions__how-to-claim-section .page-promotions__section-title,
.page-promotions__how-to-claim-section .page-promotions__section-description {
  color: #ffffff;
}

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

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-number {
  font-size: 2rem;
  font-weight: 700;
  color: #A5C4FF; /* Glow */
  line-height: 1;
}

.page-promotions__step-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-promotions__step-content p {
  font-size: 0.95rem;
  color: #f0f0f0;
}

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

.page-promotions__terms-conditions-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
}

.page-promotions__terms-list {
  list-style: disc;
  max-width: 900px;
  margin: 40px auto;
  padding-left: 20px;
  font-size: 1rem;
  color: #1F2D3D;
}

.page-promotions__term-item {
  margin-bottom: 15px;
}

.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #2F6BFF; /* Primary Color */
  color: #ffffff;
}

.page-promotions__faq-section .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-description {
  color: #ffffff;
}

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

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff;
  list-style: none;
  position: relative;
}

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

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

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  color: #f0f0f0;
}

.page-promotions__cta-bottom-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
}

.page-promotions__cta-bottom-section .page-promotions__cta-buttons {
  margin-top: 40px;
}

.page-promotions__copyright-section {
  background-color: #1F2D3D; /* Darker background for footer-like section */
  color: #D6E2FF; /* Border color as text color for contrast */
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
}

.page-promotions__copyright-text {
  margin: 0;
}

/* --- General Image and Button Responsiveness --- */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions__hero-cta-buttons,
.page-promotions__cta-buttons {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Mobile Specific Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-promotions__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* HERO 主图区域 */
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px !important;
  }

  .page-promotions__hero-title {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
  }

  .page-promotions__hero-description {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }

  /* 通用图片与容器 */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__promo-image {
    height: 180px !important;
  }

  .page-promotions__promo-card {
    margin-bottom: 20px;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* 按钮与按钮容器 */
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-text-link,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-bottom: 10px; /* Add margin for stacking */
  }

  .page-promotions__hero-cta-buttons,
  .page-promotions__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-promotions__cta-wrapper {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* 其他内容模块 */
  .page-promotions__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 20px !important;
  }

  .page-promotions__section-description {
    font-size: 0.95rem !important;
    margin-bottom: 30px !important;
  }

  .page-promotions__promotions-grid,
  .page-promotions__steps-list {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions__step-number {
    margin-bottom: 10px;
  }

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

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

  .page-promotions__copyright-text {
    font-size: 0.85rem !important;
  }
}