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

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

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

.page-promotions__container--center {
  text-align: center;
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-promotions__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: justify;
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, assuming body has --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
  color: #ffffff;
  background-color: #E53935; /* Fallback for image loading */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8); /* Slightly dim the image for text contrast */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 900px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-promotions__cta-button,
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions a[class*="button"],
.page-promotions a[class*="btn"] {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: none;
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-promotions__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
}

/* Dark/Light Background Sections */
.page-promotions__dark-section {
  background-color: #E53935;
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #F5F7FA;
  color: #333333;
}

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

.page-promotions__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #333333;
  transition: transform 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
}

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

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #E53935;
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  margin-top: auto; /* Push button to bottom */
  text-align: center;
}

/* Event List */
.page-promotions__event-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__event-item {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-promotions__event-item::before {
  content: '⚡'; /* Unicode lightning bolt */
  position: absolute;
  left: 0;
  color: #FF5A4F;
  font-size: 20px;
}

.page-promotions__text-link {
  color: #E53935;
  text-decoration: underline;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}

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

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
}

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

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #333333;
  outline: none;
  list-style: none; /* Remove default marker */
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #E53935;
}

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

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #555555;
}

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

/* CTA Bottom Section */
.page-promotions__cta-bottom-section {
  padding: 80px 0;
}

.page-promotions__cta-bottom-section .page-promotions__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    max-height: 600px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: 30px;
  }
  .page-promotions__offers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 30px !important;
    max-height: none !important;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 300px !important;
  }
  .page-promotions__hero-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .page-promotions__hero-content {
    padding: 15px !important;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    margin-bottom: 15px !important;
  }
  .page-promotions__hero-description {
    font-size: 16px !important;
    margin-bottom: 25px !important;
  }

  /* 其他内容模块 - 通用容器和文本 */
  .page-promotions__section {
    padding: 40px 0 !important;
  }
  .page-promotions__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: 26px !important;
    margin-bottom: 20px !important;
  }
  .page-promotions__text-block {
    font-size: 16px !important;
    text-align: left !important;
  }

  /* 产品展示图区域 (Offers Grid) */
  .page-promotions__offers-grid {
    grid-template-columns: 1fr !important; /* Single column layout */
    gap: 20px !important;
    margin-top: 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }
  .page-promotions__card {
    margin: 0 auto !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-promotions__card-image {
    height: 180px !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-promotions__card-title {
    font-size: 20px !important;
  }
  .page-promotions__card-description {
    font-size: 15px !important;
  }

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

  /* 按钮与按钮容器 */
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    padding: 12px 20px !important;
    font-size: 16px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }
  .page-promotions__hero-content .page-promotions__cta-button {
    margin: 0 auto 10px auto !important;
  }
  .page-promotions__card-content .page-promotions__card-button {
    margin-top: 15px !important;
  }
  .page-promotions__cta-bottom-section .page-promotions__cta-button {
    margin: 0 auto !important;
  }
  .page-promotions__btn-container,
  .page-promotions__cta-buttons,
  .page-promotions__button-group {
    display: flex !important;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* FAQ Section */
  .page-promotions__faq-item summary {
    padding: 15px 20px !important;
    font-size: 16px !important;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 15px !important;
  }
  .page-promotions__faq-toggle {
    font-size: 20px !important;
  }

  /* Event List */
  .page-promotions__event-item {
    font-size: 16px !important;
    padding-left: 25px !important;
  }
  .page-promotions__event-item::before {
    font-size: 18px !important;
  }

  /* CTA Bottom Section */
  .page-promotions__cta-bottom-section {
    padding: 50px 0 !important;
  }
}