.page-promotions {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
}

.page-promotions__dark-bg {
  background-color: #1E90FF; /* Auxiliary color */
  color: #ffffff;
}

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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Primary color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions__btn-primary {
  background: #FFD700; /* Primary color */
  color: #1E90FF; /* Auxiliary color for text to ensure contrast */
}

.page-promotions__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary {
  background: #1E90FF; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-promotions__btn-secondary:hover {
  background: #166cb3;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-promotions__content-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__why-choose-section {
  padding: 80px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__content-container,
.page-promotions__how-to-claim-container,
.page-promotions__terms-container,
.page-promotions__why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__section-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1E90FF; /* Auxiliary color for titles */
}

.page-promotions__dark-bg .page-promotions__section-title {
  color: #FFD700; /* Primary color for titles on dark background */
}

.page-promotions__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__dark-bg .page-promotions__section-description {
  color: #f0f0f0;
}

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

.page-promotions__promo-card,
.page-promotions__step-item,
.page-promotions__term-item,
.page-promotions__advantage-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__promo-card:hover,
.page-promotions__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__card-title,
.page-promotions__step-title,
.page-promotions__term-title,
.page-promotions__advantage-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1E90FF; /* Auxiliary color */
}

.page-promotions__promo-card .page-promotions__card-title {
  color: #1E90FF;
}

.page-promotions__card-text,
.page-promotions__step-text,
.page-promotions__term-text,
.page-promotions__advantage-text {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700; /* Primary color */
  color: #1E90FF; /* Auxiliary color for text */
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__card-button:hover {
  background: #e6c200;
  transform: translateY(-1px);
}

.page-promotions__step-item {
  background-color: #166cb3; /* Slightly darker auxiliary for contrast */
  color: #ffffff;
  padding: 30px;
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700; /* Primary color */
  color: #1E90FF; /* Auxiliary color for text */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-item .page-promotions__step-title {
  color: #FFD700; /* Primary color */
}

.page-promotions__cta-center {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.page-promotions__term-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.page-promotions__term-item .page-promotions__term-title {
  color: #1E90FF;
}

.page-promotions__advantage-item {
  background-color: #166cb3;
  color: #ffffff;
}

.page-promotions__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter on images */
}

.page-promotions__advantage-item .page-promotions__advantage-title {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 40px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions__hero-container {
    padding: 15px;
  }
  .page-promotions__main-title {
    font-size: 32px;
  }
  .page-promotions__hero-description,
  .page-promotions__section-description {
    font-size: 16px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__content-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__why-choose-section {
    padding: 40px 15px;
  }
  .page-promotions__content-container,
  .page-promotions__how-to-claim-container,
  .page-promotions__terms-container,
  .page-promotions__why-choose-container {
    padding: 0 15px;
  }
  .page-promotions__section-title {
    font-size: 28px;
  }
  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__terms-list,
  .page-promotions__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__term-item,
  .page-promotions__advantage-item {
    padding: 20px;
  }
  .page-promotions__card-title,
  .page-promotions__step-title,
  .page-promotions__term-title,
  .page-promotions__advantage-title {
    font-size: 20px;
  }
  .page-promotions__card-text,
  .page-promotions__step-text,
  .page-promotions__term-text,
  .page-promotions__advantage-text {
    font-size: 15px;
  }
  .page-promotions__promo-card .page-promotions__card-image,
  .page-promotions__advantage-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__hero-section,
  .page-promotions__content-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__why-choose-section,
  .page-promotions__hero-container,
  .page-promotions__content-container,
  .page-promotions__how-to-claim-container,
  .page-promotions__terms-container,
  .page-promotions__why-choose-container,
  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__terms-list,
  .page-promotions__advantages-grid,
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__term-item,
  .page-promotions__advantage-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}