/* style/promotions-daily-rebate.css */
.page-promotions-daily-rebate {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light text on dark background for contrast */
  background-color: #1a1a1a; /* Dark background to highlight gold/red */
  line-height: 1.6;
}

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

.page-promotions-daily-rebate__hero {
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Gold to Dark Red gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff; /* White text for strong contrast on gradient */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-daily-rebate__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions-daily-rebate__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
}

.page-promotions-daily-rebate__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-daily-rebate__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff; /* White for strong contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-daily-rebate__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #eee; /* Slightly off-white */
}

.page-promotions-daily-rebate__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark Red text */
  padding: 15px 30px;
  border-radius: 5px;
  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-daily-rebate__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-daily-rebate__button--center {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 300px;
}

.page-promotions-daily-rebate__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-promotions-daily-rebate__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-daily-rebate__section:last-of-type {
  border-bottom: none;
}

.page-promotions-daily-rebate__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
}

.page-promotions-daily-rebate__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000; /* Dark Red underline */
  border-radius: 2px;
}

.page-promotions-daily-rebate__introduction p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: #ccc;
}

.page-promotions-daily-rebate__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-promotions-daily-rebate__benefit-item {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-daily-rebate__benefit-item:hover {
  transform: translateY(-5px);
  background-color: #3a3a3a;
}

.page-promotions-daily-rebate__benefit-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for benefit titles */
  margin-bottom: 15px;
}

.page-promotions-daily-rebate__benefit-item p {
  color: #bbb;
  font-size: 1em;
}

.page-promotions-daily-rebate__how-to-join .page-promotions-daily-rebate__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-daily-rebate__step-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-promotions-daily-rebate__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B0000; /* Dark Red number background */
  color: #FFD700; /* Gold number */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #FFD700; /* Gold border */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-rebate__step-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-promotions-daily-rebate__step-item p {
  color: #bbb;
  font-size: 0.95em;
}

.page-promotions-daily-rebate__step-item a {
  color: #FFD700; /* Gold links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions-daily-rebate__step-item a:hover {
  color: #fff;
}

.page-promotions-daily-rebate__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-rebate__faq-question {
  color: #FFD700; /* Gold for FAQ questions */
  font-size: 1.3em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-daily-rebate__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions-daily-rebate__faq-answer {
  color: #bbb;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-promotions-daily-rebate__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-promotions-daily-rebate__cta-content {
  text-align: center;
  padding: 50px 20px;
  background-color: #8B0000; /* Dark Red background for CTA */
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.page-promotions-daily-rebate__cta-content .page-promotions-daily-rebate__section-title {
  color: #FFD700; /* Gold title on red background */
  margin-bottom: 25px;
}

.page-promotions-daily-rebate__cta-content .page-promotions-daily-rebate__section-title::after {
  background-color: #FFD700;
}

.page-promotions-daily-rebate__cta-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
}

.page-promotions-daily-rebate__cta-content a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-daily-rebate__cta-content a:hover {
  color: #fff;
}

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

.page-promotions-daily-rebate__related-item {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-daily-rebate__related-item:hover {
  transform: translateY(-5px);
  background-color: #3a3a3a;
}

.page-promotions-daily-rebate__related-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate__related-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-promotions-daily-rebate__related-item h3 a {
  color: #FFD700; /* Gold links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-daily-rebate__related-item h3 a:hover {
  color: #fff;
}

.page-promotions-daily-rebate__related-item p {
  color: #bbb;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-promotions-daily-rebate__link {
  display: inline-block;
  color: #8B0000; /* Dark Red link */
  background-color: #FFD700; /* Gold background */
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-daily-rebate__link:hover {
  background-color: #e6c200;
  color: #6a0000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-daily-rebate__title {
    font-size: 2.8em;
  }
  .page-promotions-daily-rebate__subtitle {
    font-size: 1.3em;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 2em;
  }
  .page-promotions-daily-rebate__hero {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-rebate__title {
    font-size: 2.2em;
  }
  .page-promotions-daily-rebate__subtitle {
    font-size: 1.1em;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 1.8em;
  }
  .page-promotions-daily-rebate__benefits-grid,
  .page-promotions-daily-rebate__steps,
  .page-promotions-daily-rebate__related-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-daily-rebate__step-item {
    max-width: 100%;
  }
  .page-promotions-daily-rebate__hero {
    padding: 60px 0;
  }
  .page-promotions-daily-rebate__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-daily-rebate__title {
    font-size: 1.8em;
  }
  .page-promotions-daily-rebate__subtitle {
    font-size: 1em;
  }
  .page-promotions-daily-rebate__section-title {
    font-size: 1.5em;
  }
  .page-promotions-daily-rebate__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-daily-rebate__section {
    padding: 40px 0;
  }
  .page-promotions-daily-rebate__hero {
    padding: 40px 0;
  }
}