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

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

.page-promotions__hero-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
  padding-bottom: 40px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-promotions__hero-image-container {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-text-content {
  max-width: 800px;
  margin-top: 20px;
}

.page-promotions__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

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

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  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, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

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

.page-promotions__btn-secondary {
  background-color: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.page-promotions__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1F5BCC;
  border-color: #1F5BCC;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #000000; /* Custom Color_1776249996415 */
}

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

.page-promotions__light-bg {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding: 60px 0;
}

.page-promotions__dark-section {
  background-color: #2F6BFF;
  color: #ffffff;
  padding: 60px 0;
}

.page-promotions__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-promotions__dark-section .page-promotions__paragraph {
  color: #f0f0f0;
}

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

.page-promotions__dark-section .page-promotions__highlight-text {
  color: #A5C4FF; /* Glow */
}

.page-promotions__types-section .page-promotions__container {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.page-promotions__card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #1F2D3D; /* Text Main */
  border: 1px solid #D6E2FF; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image-container {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.page-promotions__card-image {
  width: 100%;
  height: auto;
  display: block;
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-promotions__card-description {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-promotions__card-list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-promotions__card-list li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.page-promotions__card .page-promotions__btn-primary {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 1rem;
}

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

.page-promotions__terms-list li {
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #2F6BFF;
  font-size: 1rem;
  line-height: 1.6;
}

.page-promotions__terms-list li strong {
  color: #000000;
}

.page-promotions__btn-secondary {
  margin: 20px auto 0 auto;
  display: block;
  width: fit-content;
}

.page-promotions__how-to-claim-section .page-promotions__container {
  padding-top: 40px;
  padding-bottom: 40px;
}

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

.page-promotions__step-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  position: relative;
  border: 1px solid #D6E2FF; /* Border */
  color: #1F2D3D;
}

.page-promotions__step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 3px solid #F4F7FB;
}

.page-promotions__step-card .page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
  color: #000000;
}

.page-promotions__step-card .page-promotions__step-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-promotions__link-inline {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-promotions__link-inline:hover {
  color: #1F5BCC;
}

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

.page-promotions__faq-section .page-promotions__container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #D6E2FF; /* Border */
  color: #1F2D3D;
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  position: relative;
  user-select: none;
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #2F6BFF;
  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: 1rem;
  line-height: 1.7;
  color: #1F2D3D;
}

.page-promotions__conclusion-section .page-promotions__container {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Universal image and container responsive styles */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions__section,
.page-promotions__card,
.page-promotions__container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries for Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-promotions__hero-title {
    font-size: 2rem !important;
  }

  .page-promotions__hero-description {
    font-size: 1rem !important;
  }

  /* 按钮与按钮容器 */
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .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;
    padding-right: 15px;
  }

  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* 产品展示图区域 */
  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-promotions__card {
    padding: 20px;
  }

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

  .page-promotions__card-description,
  .page-promotions__card-list li {
    font-size: 0.9rem;
  }

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

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

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

  .page-promotions__paragraph {
    font-size: 1rem;
  }

  .page-promotions__terms-list li {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-promotions__step-card {
    padding: 25px;
  }

  .page-promotions__step-number {
    top: -10px;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

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

  .page-promotions__faq-answer {
    font-size: 0.95rem;
    padding: 0 20px 15px 20px;
  }
}