.page-promo-daily-weekly-rebate {
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-promo-daily-weekly-rebate__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-promo-daily-weekly-rebate__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo-daily-weekly-rebate__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-promo-daily-weekly-rebate__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* White text over dark/rich image */
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promo-daily-weekly-rebate__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-daily-weekly-rebate__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-promo-daily-weekly-rebate__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo-daily-weekly-rebate__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 150px;
  text-align: center;
}

.page-promo-daily-weekly-rebate__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promo-daily-weekly-rebate__button--register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo-daily-weekly-rebate__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo-daily-weekly-rebate__button--login:hover {
  background-color: #E0A83A;
  transform: translateY(-2px);
}

.page-promo-daily-weekly-rebate__button--claim {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

.page-promo-daily-weekly-rebate__button--claim:hover {
  background-color: #E0A83A;
  transform: translateY(-2px);
}

.page-promo-daily-weekly-rebate__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-promo-daily-weekly-rebate__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo-daily-weekly-rebate__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-promo-daily-weekly-rebate__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-promo-daily-weekly-rebate__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333333;
}

.page-promo-daily-weekly-rebate__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-promo-daily-weekly-rebate__list-item {
  margin-bottom: 10px;
}

.page-promo-daily-weekly-rebate__formula {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin: 20px 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #000000;
}

.page-promo-daily-weekly-rebate__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-promo-daily-weekly-rebate__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-promo-daily-weekly-rebate__final-cta {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-daily-weekly-rebate__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-weekly-rebate__hero-description {
    font-size: 1.2em;
  }
  .page-promo-daily-weekly-rebate__section-title {
    font-size: 2.2em;
  }
  .page-promo-daily-weekly-rebate__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-weekly-rebate__hero-section {
    min-height: 400px;
  }
  .page-promo-daily-weekly-rebate__hero-content {
    padding: 30px;
  }
  .page-promo-daily-weekly-rebate__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-weekly-rebate__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-weekly-rebate__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-weekly-rebate__button {
    width: 100%;
  }
  .page-promo-daily-weekly-rebate__content-area {
    padding: 40px 15px;
  }
  .page-promo-daily-weekly-rebate__section-title {
    font-size: 2em;
  }
  .page-promo-daily-weekly-rebate__sub-title {
    font-size: 1.4em;
  }
  .page-promo-daily-weekly-rebate__paragraph,
  .page-promo-daily-weekly-rebate__list,
  .page-promo-daily-weekly-rebate__formula {
    font-size: 1em;
  }
  .page-promo-daily-weekly-rebate__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo-daily-weekly-rebate__final-cta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-weekly-rebate__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-weekly-rebate__hero-description {
    font-size: 0.9em;
  }
  .page-promo-daily-weekly-rebate__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-weekly-rebate__sub-title {
    font-size: 1.2em;
  }
  .page-promo-daily-weekly-rebate__content-image {
    min-width: 200px; /* Ensure mobile images are not too small */
    min-height: 200px;
  }
}