.page-promotions-weekly-cashback-program {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for readability on light backgrounds */
}

.page-promotions-weekly-cashback-program__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-weekly-cashback-program__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue,gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-weekly-cashback-program__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-promotions-weekly-cashback-program__title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-weekly-cashback-program__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Light gray for subtitle */
}

.page-promotions-weekly-cashback-program__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-weekly-cashback-program__button--primary {
  background-color: #FFCC00; /* Gold for primary button */
  color: #003366; /* Dark blue text on gold */
}

.page-promotions-weekly-cashback-program__button--primary:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-promotions-weekly-cashback-program__section {
  padding: 60px 0;
  background-color: #f8f8f8; /* Light background for content sections */
  border-bottom: 1px solid #eeeeee;
}

.page-promotions-weekly-cashback-program__section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-promotions-weekly-cashback-program__section-title {
  font-size: 2.5em;
  color: #003366; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-weekly-cashback-program__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-promotions-weekly-cashback-program__subsection-title {
  font-size: 1.8em;
  color: #003366; /* Dark blue for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFCC00; /* Gold accent */
  padding-left: 15px;
}

.page-promotions-weekly-cashback-program__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-weekly-cashback-program__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555555; /* Slightly lighter gray for list items */
}

.page-promotions-weekly-cashback-program__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promotions-weekly-cashback-program__list--ordered {
  list-style-type: decimal;
}

.page-promotions-weekly-cashback-program__list--benefits li::before {
  content: '✔';
  color: #FFCC00; /* Gold checkmark */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.page-promotions-weekly-cashback-program__list--benefits {
  list-style: none;
  margin-left: 0;
  padding-left: 20px;
}

.page-promotions-weekly-cashback-program__cta {
  background-color: #003366; /* Dark blue background for CTA */
  color: #FFFFFF; /* White text */
  text-align: center;
  padding: 80px 0;
}

.page-promotions-weekly-cashback-program__cta .page-promotions-weekly-cashback-program__section-title {
  color: #FFCC00; /* Gold for CTA title */
}

.page-promotions-weekly-cashback-program__cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-promotions-weekly-cashback-program__link {
  color: #FFCC00; /* Gold for links in dark section */
  text-decoration: underline;
}

.page-promotions-weekly-cashback-program__link:hover {
  color: #e6b800;
}

.page-promotions-weekly-cashback-program__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions-weekly-cashback-program__button--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold text for secondary button */
  border: 2px solid #FFCC00; /* Gold border */
}

.page-promotions-weekly-cashback-program__button--secondary:hover {
  background-color: #FFCC00; /* Gold background on hover */
  color: #003366; /* Dark blue text on hover */
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-weekly-cashback-program__title {
    font-size: 2.5em;
  }

  .page-promotions-weekly-cashback-program__subtitle {
    font-size: 1.2em;
  }

  .page-promotions-weekly-cashback-program__section-title {
    font-size: 2em;
  }

  .page-promotions-weekly-cashback-program__subsection-title {
    font-size: 1.5em;
  }

  .page-promotions-weekly-cashback-program__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-weekly-cashback-program__button-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-promotions-weekly-cashback-program__title {
    font-size: 2em;
  }

  .page-promotions-weekly-cashback-program__subtitle {
    font-size: 1em;
  }

  .page-promotions-weekly-cashback-program__section-title {
    font-size: 1.8em;
  }

  .page-promotions-weekly-cashback-program__subsection-title {
    font-size: 1.3em;
  }

  .page-promotions-weekly-cashback-program__button {
    width: 90%;
    max-width: 300px;
  }
}