.page-promotions {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #FFFFFF;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  position: relative;
  overflow: hidden;
}

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

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

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

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-promotions__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-promotions__cta-button--register:hover {
  background-color: #EEEEEE;
  transform: translateY(-2px);
}

.page-promotions__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions__cta-button--login:hover {
  background-color: #E0A73A;
  transform: translateY(-2px);
}

.page-promotions__why-choose-us-section,
.page-promotions__types-section,
.page-promotions__how-to-claim-section,
.page-promotions__vip-program-section,
.page-promotions__terms-conditions-section,
.page-promotions__app-download-section,
.page-promotions__join-us-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #000000;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-promotions__section-description {
  font-size: 1rem;
  color: #666666;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.page-promotions__benefits-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #333333;
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

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

.page-promotions__promo-card {
  background-color: #FDFDFD;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-promotions__promo-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #EEEEEE;
}

.page-promotions__promo-card-title {
  font-size: 1.3rem;
  color: #000000;
  margin: 20px 15px 10px;
  font-weight: 600;
}

.page-promotions__promo-card-description {
  font-size: 0.95rem;
  color: #777777;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-promotions__promo-card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  border: 2px solid #FCBC45;
}

.page-promotions__promo-card-button:hover {
  background-color: #E0A73A;
}

.page-promotions__how-to-claim-section {
  background-color: #FDFDFD;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-promotions__steps-item {
  background-color: #F8F8F8;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  text-align: center;
  border-top: 5px solid #000000;
}

.page-promotions__steps-title {
  font-size: 1.4rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__steps-text {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-promotions__steps-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: 2px solid #000000;
}

.page-promotions__steps-button:hover {
  background-color: #333333;
}

.page-promotions__vip-program-section {
  text-align: center;
}

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

.page-promotions__vip-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 400px;
}

.page-promotions__vip-list-item {
  background-color: #F8F8F8;
  border-left: 5px solid #000000;
  padding: 12px 15px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333333;
  border-radius: 4px;
}

.page-promotions__terms-conditions-section .page-promotions__cta-button {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promotions__terms-conditions-section .page-promotions__cta-button:hover {
  background-color: #333333;
}

.page-promotions__app-download-section {
  text-align: center;
}

.page-promotions__app-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  margin: 30px auto;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__app-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__cta-button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions__cta-button--download:hover {
  background-color: #E0A73A;
}

.page-promotions__cta-button--android {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promotions__cta-button--android:hover {
  background-color: #333333;
}

.page-promotions__join-us-section {
  text-align: center;
}

.page-promotions__cta-button--final {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-promotions__cta-button--final:hover {
  background-color: #E0A73A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 8px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

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

  .page-promotions__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions__why-choose-us-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__vip-program-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__app-download-section,
  .page-promotions__join-us-section {
    margin: 20px auto;
    padding: 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-promotions__section-description {
    font-size: 0.95rem;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-card-image {
    height: 200px;
  }

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

  .page-promotions__steps-item {
    padding: 20px;
  }

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

  .page-promotions__vip-features {
    flex-direction: column;
  }

  .page-promotions__vip-image,
  .page-promotions__app-image {
    max-width: 100%;
  }

  /* Ensure images in content sections do not overflow */
  .page-promotions__why-choose-us-section img,
  .page-promotions__types-section img,
  .page-promotions__how-to-claim-section img,
  .page-promotions__vip-program-section img,
  .page-promotions__terms-conditions-section img,
  .page-promotions__app-download-section img,
  .page-promotions__join-us-section img {
    max-width: 100%;
    height: auto;
  }
}