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

.page-promo-daily-rebate__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo-daily-rebate__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  background-color: #0A2342;
}

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

.page-promo-daily-rebate__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

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

.page-promo-daily-rebate__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-promo-daily-rebate__hero-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, color 0.3s ease, transform 0.3s ease;
}

.page-promo-daily-rebate__hero-button--primary {
  background-color: #FFD700;
  color: #0A2342;
}

.page-promo-daily-rebate__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo-daily-rebate__hero-button--secondary {
  background-color: #DC143C;
  color: #ffffff;
  border: 2px solid #DC143C;
}

.page-promo-daily-rebate__hero-button--secondary:hover {
  background-color: #b31030;
  transform: translateY(-3px);
}

.page-promo-daily-rebate__info-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-promo-daily-rebate__info-section:nth-of-type(even) {
  background-color: #ffffff;
}

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

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

.page-promo-daily-rebate__sub-section-title {
  font-size: 1.8em;
  color: #DC143C;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-promo-daily-rebate__section-text {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo-daily-rebate__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
  width: 800px; /* Default display width for larger screens */
  height: 600px; /* Default display height for larger screens */
  object-fit: cover;
}

.page-promo-daily-rebate__feature-list,
.page-promo-daily-rebate__rules-list,
.page-promo-daily-rebate__faq-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 900px;
}

.page-promo-daily-rebate__feature-item,
.page-promo-daily-rebate__rule-item {
  background-color: #f0f0f0;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700;
  font-size: 1.1em;
}

.page-promo-daily-rebate__feature-item strong,
.page-promo-daily-rebate__rule-item strong {
  color: #0A2342;
}

.page-promo-daily-rebate__faq-item {
  background-color: #f0f0f0;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #DC143C;
}

.page-promo-daily-rebate__faq-question {
  font-size: 1.2em;
  color: #0A2342;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo-daily-rebate__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #DC143C;
  transition: transform 0.3s ease;
}

.page-promo-daily-rebate__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-daily-rebate__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
  padding-top: 0;
}

.page-promo-daily-rebate__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-promo-daily-rebate__cta-section {
  padding: 80px 0;
  background-color: #0A2342;
  color: #ffffff;
  text-align: center;
}

.page-promo-daily-rebate__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-promo-daily-rebate__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promo-daily-rebate__cta-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, color 0.3s ease, transform 0.3s ease;
}

.page-promo-daily-rebate__cta-button--primary {
  background-color: #FFD700;
  color: #0A2342;
}

.page-promo-daily-rebate__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promo-daily-rebate__cta-button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-promo-daily-rebate__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo-daily-rebate__hero-title {
    font-size: 2.8em;
  }
  .page-promo-daily-rebate__section-title {
    font-size: 2em;
  }
  .page-promo-daily-rebate__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-rebate {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo-daily-rebate__hero-section {
    padding: 60px 20px;
  }
  .page-promo-daily-rebate__hero-title {
    font-size: 2.2em;
  }
  .page-promo-daily-rebate__hero-description {
    font-size: 1.1em;
  }
  .page-promo-daily-rebate__hero-buttons,
  .page-promo-daily-rebate__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-rebate__hero-button,
  .page-promo-daily-rebate__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-promo-daily-rebate__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-rebate__sub-section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-rebate__section-text {
    font-size: 1em;
  }
  .page-promo-daily-rebate__feature-item,
  .page-promo-daily-rebate__rule-item,
  .page-promo-daily-rebate__faq-item {
    padding: 15px;
    font-size: 1em;
  }
  .page-promo-daily-rebate__faq-question {
    font-size: 1.1em;
  }
  .page-promo-daily-rebate__cta-title {
    font-size: 2em;
  }
  /* Content area image constraints for mobile */
  .page-promo-daily-rebate__image {
    max-width: 100%;
    height: auto;
    width: auto; /* Allow auto width for responsive scaling */
    min-width: 200px; /* Still enforce min size */
    min-height: 200px; /* Still enforce min size */
  }
}

@media (max-width: 480px) {
  .page-promo-daily-rebate__hero-title {
    font-size: 1.8em;
  }
  .page-promo-daily-rebate__hero-description {
    font-size: 0.95em;
  }
  .page-promo-daily-rebate__section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-rebate__sub-section-title {
    font-size: 1.3em;
  }
  .page-promo-daily-rebate__cta-title {
    font-size: 1.8em;
  }
}