.page-promotions-daily-checkin-rewards {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-promotions-daily-checkin-rewards__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff); /* Adjusted for better contrast with text */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-checkin-rewards__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions-daily-checkin-rewards__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff; /* Ensure high contrast */
}

.page-promotions-daily-checkin-rewards__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f8ff; /* Slightly lighter for readability */
}

.page-promotions-daily-checkin-rewards__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  opacity: 0.7;
  z-index: 0;
}

.page-promotions-daily-checkin-rewards__hero-image {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.page-promotions-daily-checkin-rewards__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Auxiliary color for CTA */
  color: #333; /* Dark text for contrast */
  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;
  margin: 10px;
  border: 2px solid #ffc107;
}

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

.page-promotions-daily-checkin-rewards__cta-button--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-promotions-daily-checkin-rewards__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: #ffc107;
  color: #ffc107;
}

.page-promotions-daily-checkin-rewards__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-promotions-daily-checkin-rewards__section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.page-promotions-daily-checkin-rewards__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-promotions-daily-checkin-rewards__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions-daily-checkin-rewards__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-daily-checkin-rewards__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-daily-checkin-rewards__benefit-card,
.page-promotions-daily-checkin-rewards__step-card,
.page-promotions-daily-checkin-rewards__reward-item,
.page-promotions-daily-checkin-rewards__why-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-daily-checkin-rewards__benefit-card:hover,
.page-promotions-daily-checkin-rewards__step-card:hover,
.page-promotions-daily-checkin-rewards__reward-item:hover,
.page-promotions-daily-checkin-rewards__why-item:hover {
  transform: translateY(-5px);
}

.page-promotions-daily-checkin-rewards__benefit-icon,
.page-promotions-daily-checkin-rewards__reward-icon,
.page-promotions-daily-checkin-rewards__why-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #007bff; /* Main brand color for icons */
}

.page-promotions-daily-checkin-rewards__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffc107;
  color: #333;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-daily-checkin-rewards__card-title,
.page-promotions-daily-checkin-rewards__item-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-daily-checkin-rewards__card-text,
.page-promotions-daily-checkin-rewards__item-text {
  color: #666;
  font-size: 1em;
}

.page-promotions-daily-checkin-rewards__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-daily-checkin-rewards__how-to .page-promotions-daily-checkin-rewards__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-promotions-daily-checkin-rewards__tip-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-daily-checkin-rewards__tip-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #007bff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.1em;
  color: #444;
}

.page-promotions-daily-checkin-rewards__tip-list li strong {
  color: #007bff;
}

.page-promotions-daily-checkin-rewards__faq-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.page-promotions-daily-checkin-rewards__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-promotions-daily-checkin-rewards__faq-answer {
  font-size: 1em;
  color: #666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-promotions-daily-checkin-rewards__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-promotions-daily-checkin-rewards__call-to-action {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-promotions-daily-checkin-rewards__call-to-action .page-promotions-daily-checkin-rewards__section-title {
  color: #fff;
}

.page-promotions-daily-checkin-rewards__call-to-action .page-promotions-daily-checkin-rewards__section-description {
  color: #f0f8ff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-daily-checkin-rewards__hero {
    flex-direction: column;
    padding: 60px 20px;
    gap: 20px;
  }

  .page-promotions-daily-checkin-rewards__hero-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 30px;
    justify-content: center;
  }

  .page-promotions-daily-checkin-rewards__hero-image {
    max-width: 80%;
    height: auto;
  }

  .page-promotions-daily-checkin-rewards__title {
    font-size: 2.5em;
  }

  .page-promotions-daily-checkin-rewards__subtitle {
    font-size: 1.1em;
  }

  .page-promotions-daily-checkin-rewards__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-checkin-rewards__title {
    font-size: 2em;
  }

  .page-promotions-daily-checkin-rewards__subtitle {
    font-size: 1em;
  }

  .page-promotions-daily-checkin-rewards__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-daily-checkin-rewards__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promotions-daily-checkin-rewards__section {
    padding: 40px 15px;
  }

  .page-promotions-daily-checkin-rewards__section-title {
    font-size: 1.8em;
  }

  .page-promotions-daily-checkin-rewards__grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-daily-checkin-rewards__card-title,
  .page-promotions-daily-checkin-rewards__item-title {
    font-size: 1.3em;
  }

  .page-promotions-daily-checkin-rewards__faq-question {
    font-size: 1.1em;
  }
}