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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  background-color: #F4F7FB; /* Background */
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: clamp(2em, 3.5vw, 3em);
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__intro-text {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-promotions__cta-button--center {
  margin: 30px auto 0 auto;
  display: block;
  width: fit-content;
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

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

.page-promotions__section--gray {
  background-color: #F4F7FB; /* Background */
}

.page-promotions__section--blue-bg {
  background: linear-gradient(135deg, #2F6BFF, #6FA3FF);
  color: #FFFFFF;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-promotions__section-description {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-promotions__promo-card,
.page-promotions__step-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__promo-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-promotions__card-text {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-text--white {
  color: #FFFFFF;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(47, 107, 255, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions__card-button--secondary {
  background: #FFFFFF;
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__card-button--secondary:hover {
  background: #F0F5FF;
  color: #2F6BFF;
}

.page-promotions__vip-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__vip-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-promotions__sub-title {
  font-size: 2em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-promotions__vip-list li {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-promotions__list-icon {
  color: #2F6BFF; /* Main Color */
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-promotions__vip-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-promotions__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #A5C4FF; /* Glow */
  margin-bottom: 20px;
}

.page-promotions__terms-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions__terms-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-promotions__terms-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
}

.page-promotions__terms-list li {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.page-promotions__faq-section {
  background-color: #F4F7FB; /* Background */
  text-align: left;
}

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

.page-promotions__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-promotions__faq-item[open] {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background-color: #FFFFFF;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

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

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2F6BFF; /* Main Color */
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.7;
}

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

/* General image responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-promotions__hero-section {
    padding: 10px 15px 30px;
  }

  .page-promotions__hero-image-wrapper {
    margin-bottom: 15px;
    border-radius: 8px;
  }

  .page-promotions__hero-image {
    object-fit: contain !important;
    max-height: 300px;
  }

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

  .page-promotions__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__cta-button--center {
    margin: 20px auto 0 auto;
  }

  .page-promotions__section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-promotions__promo-image {
    max-height: 150px;
    margin-bottom: 15px;
  }

  .page-promotions__card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .page-promotions__card-text {
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .page-promotions__card-button {
    padding: 8px 15px;
    font-size: 0.9em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__vip-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .page-promotions__vip-text {
    text-align: center;
    min-width: unset;
  }

  .page-promotions__sub-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-promotions__vip-list {
    margin-bottom: 20px;
  }

  .page-promotions__vip-list li {
    font-size: 1em;
    justify-content: center;
  }

  .page-promotions__vip-image-wrapper {
    min-width: unset;
    max-width: 100%;
  }

  .page-promotions__step-number {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .page-promotions__terms-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .page-promotions__terms-image {
    max-width: 250px;
  }

  .page-promotions__terms-list {
    min-width: unset;
    text-align: center;
  }

  .page-promotions__terms-list li {
    font-size: 0.95em;
    justify-content: center;
  }

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

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

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

  /* All images */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* All containers for images and buttons */
  .page-promotions__hero-section,
  .page-promotions__section,
  .page-promotions__promo-card,
  .page-promotions__step-card,
  .page-promotions__vip-content,
  .page-promotions__vip-image-wrapper,
  .page-promotions__terms-content,
  .page-promotions__terms-image,
  .page-promotions__faq-section,
  .page-promotions__faq-list,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  /* Button containers for multiple buttons */
  .page-promotions__button-group, /* If any */
  .page-promotions__cta-buttons { /* If any */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Ensuring content area images are not too small */
.page-promotions__promo-image,
.page-promotions__vip-image,
.page-promotions__terms-image {
  min-width: 200px;
  min-height: 200px;
}

/* Contrast fixes for brand colors on specific backgrounds */
.page-promotions__section--blue-bg .page-promotions__card-title,
.page-promotions__section--blue-bg .page-promotions__card-text {
  color: #FFFFFF;
}

.page-promotions__vip-list li,
.page-promotions__terms-list li {
  color: #1F2D3D; /* Ensure dark text on light background */
}

.page-promotions__list-icon {
  color: #2F6BFF; /* Main Color */
}