.page-promotions-daily-rebate {
  color: #333333; /* Default text color for light body background */
}

.page-promotions-daily-rebate__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  position: relative;
  background-color: #003366; /* Main brand color */
  overflow: hidden;
}

.page-promotions-daily-rebate__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-promotions-daily-rebate__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-promotions-daily-rebate__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

.page-promotions-daily-rebate__hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-daily-rebate__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent color for CTA */
  color: #003366; /* Main brand color for text */
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-daily-rebate__cta-button--large {
  padding: 18px 50px;
  font-size: 1.4rem;
}

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

.page-promotions-daily-rebate__section-title {
  font-size: 2.5rem;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-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-promotions-daily-rebate__section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-daily-rebate__introduction-section,
.page-promotions-daily-rebate__benefits-section,
.page-promotions-daily-rebate__calculation-section,
.page-promotions-daily-rebate__eligibility-section,
.page-promotions-daily-rebate__how-to-claim-section,
.page-promotions-daily-rebate__faq-section,
.page-promotions-daily-rebate__cta-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-promotions-daily-rebate__benefit-card,
.page-promotions-daily-rebate__rule-card,
.page-promotions-daily-rebate__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.page-promotions-daily-rebate__benefit-card:hover,
.page-promotions-daily-rebate__rule-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-rebate__benefit-icon {
  width: 100px; /* Min size 200px requirement is for content images, not decorative icons. Re-evaluating. */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter is applied */
  display: block; /* Ensure it's treated as a block for sizing */
  margin-left: auto; /* Center the image */
  margin-right: auto;
  min-width: 200px; /* Enforcing minimum size for all images */
  min-height: 200px;
}

.page-promotions-daily-rebate__benefit-title,
.page-promotions-daily-rebate__rule-title,
.page-promotions-daily-rebate__faq-question {
  font-size: 1.5rem;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-daily-rebate__benefit-description,
.page-promotions-daily-rebate__rule-description,
.page-promotions-daily-rebate__faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

.page-promotions-daily-rebate__rule-description a {
  color: #003366;
  text-decoration: underline;
}

.page-promotions-daily-rebate__table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-rebate__rebate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px; /* Ensure table is readable on smaller screens */
}

.page-promotions-daily-rebate__rebate-table th,
.page-promotions-daily-rebate__rebate-table td {
  border: 1px solid #eee;
  padding: 15px;
  text-align: left;
  font-size: 1rem;
}

.page-promotions-daily-rebate__rebate-table th {
  background-color: #003366;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

.page-promotions-daily-rebate__rebate-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.page-promotions-daily-rebate__rebate-table tr:hover {
  background-color: #f0f8ff;
}

.page-promotions-daily-rebate__note-text {
  font-style: italic;
  color: #777777;
  margin-top: 20px;
  font-size: 0.95rem;
}

.page-promotions-daily-rebate__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no CSS filter is applied */
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-daily-rebate__image-center {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no CSS filter is applied */
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-daily-rebate__step-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-daily-rebate__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #fcfcfc;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #003366;
}

.page-promotions-daily-rebate__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-right: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.page-promotions-daily-rebate__step-content {
  flex-grow: 1;
}

.page-promotions-daily-rebate__step-title {
  font-size: 1.6rem;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-daily-rebate__step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555555;
}

.page-promotions-daily-rebate__faq-list {
  margin-top: 30px;
}

.page-promotions-daily-rebate__faq-item {
  text-align: left;
  margin-bottom: 20px;
  cursor: pointer;
  border-left: 5px solid #FFD700;
}

.page-promotions-daily-rebate__faq-question {
  font-size: 1.4rem;
  color: #003366;
  margin-bottom: 10px;
  padding-right: 30px;
  position: relative;
}

.page-promotions-daily-rebate__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.8rem;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-promotions-daily-rebate__faq-item.active .page-promotions-daily-rebate__faq-question::after {
  transform: rotate(45deg);
}

.page-promotions-daily-rebate__faq-answer {
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
  color: #555555;
}

.page-promotions-daily-rebate__faq-item.active .page-promotions-daily-rebate__faq-answer {
  display: block;
}

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

.page-promotions-daily-rebate__cta-section .page-promotions-daily-rebate__section-title {
  color: #FFD700;
}

.page-promotions-daily-rebate__cta-section .page-promotions-daily-rebate__section-text {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-daily-rebate__hero-title {
    font-size: 3rem;
  }
  .page-promotions-daily-rebate__hero-description {
    font-size: 1.1rem;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 2.2rem;
  }
  .page-promotions-daily-rebate__benefit-title,
  .page-promotions-daily-rebate__rule-title,
  .page-promotions-daily-rebate__faq-question {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-rebate__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  }
  .page-promotions-daily-rebate__hero-content {
    position: static;
    transform: none;
    padding: 30px 20px;
    background-color: rgba(0, 51, 102, 0.8); /* Semi-transparent background for text on mobile */
    border-radius: 0;
  }
  .page-promotions-daily-rebate__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .page-promotions-daily-rebate__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a minimum height on mobile */
  }
  .page-promotions-daily-rebate__hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .page-promotions-daily-rebate__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-promotions-daily-rebate__cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 2rem;
  }
  .page-promotions-daily-rebate__benefits-grid,
  .page-promotions-daily-rebate__rules-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-rebate__rebate-table {
    min-width: 100%; /* Adjust table for mobile */
  }
  .page-promotions-daily-rebate__rebate-table th,
  .page-promotions-daily-rebate__rebate-table td {
    padding: 10px;
    font-size: 0.9rem;
  }
  .page-promotions-daily-rebate__step-item {
    flex-direction: column;
    text-align: center;
    border-left: none;
    border-top: 5px solid #003366;
  }
  .page-promotions-daily-rebate__step-number {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-promotions-daily-rebate__faq-question {
    font-size: 1.2rem;
  }
  /* Mobile content image constraint */
  .page-promotions-daily-rebate img {
    max-width: 100%;
    height: auto;
    filter: none; /* Ensure no CSS filter is applied */
  }
  .page-promotions-daily-rebate__image-full-width,
  .page-promotions-daily-rebate__image-center {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-rebate__hero-title {
    font-size: 1.8rem;
  }
  .page-promotions-daily-rebate__hero-description {
    font-size: 0.9rem;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 1.8rem;
  }
  .page-promotions-daily-rebate__cta-button--large {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
}