.page-promo-daily-cashback {
  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-cashback__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  text-align: center;
  color: #FFFFFF; /* Light text for hero content over dark/rich image */
}

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

.page-promo-daily-cashback__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

.page-promo-daily-cashback__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-daily-cashback__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

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

.page-promo-daily-cashback__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-promo-daily-cashback__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for yellow button */
}

.page-promo-daily-cashback__button--primary:hover {
  background-color: #e0a030;
}

.page-promo-daily-cashback__button--secondary {
  background-color: #000000; /* Primary color */
  color: #FFFFFF; /* Light text for dark button */
  border: 2px solid #FCBC45;
}

.page-promo-daily-cashback__button--secondary:hover {
  background-color: #333333;
  border-color: #FFFFFF;
}

.page-promo-daily-cashback__section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-promo-daily-cashback__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

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

.page-promo-daily-cashback__section-title {
  font-size: 2.8em;
  color: #000000; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promo-daily-cashback__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-promo-daily-cashback__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo-daily-cashback__image-content {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promo-daily-cashback__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo-daily-cashback__ordered-list {
  list-style: decimal;
  padding-left: 25px;
  margin: 40px 0;
}

.page-promo-daily-cashback__list-item {
  background-color: #fcfcfc;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promo-daily-cashback__list-item:hover {
  transform: translateY(-5px);
}

.page-promo-daily-cashback__list-title {
  font-size: 1.5em;
  color: #FCBC45; /* Login button color */
  margin-bottom: 15px;
}

.page-promo-daily-cashback__list-text {
  font-size: 1em;
  color: #555555;
}

.page-promo-daily-cashback__sub-title {
  font-size: 2em;
  color: #000000; /* Primary color */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-promo-daily-cashback__table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.page-promo-daily-cashback__table-head {
  background-color: #000000; /* Primary color */
  color: #FFFFFF;
}

.page-promo-daily-cashback__table-header,
.page-promo-daily-cashback__table-data {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
}

.page-promo-daily-cashback__table-data {
  background-color: #ffffff;
  color: #333333;
}

.page-promo-daily-cashback__table-row:nth-child(even) .page-promo-daily-cashback__table-data {
  background-color: #f9f9f9;
}

.page-promo-daily-cashback__table-row:hover .page-promo-daily-cashback__table-data {
  background-color: #f0f0f0;
}

.page-promo-daily-cashback__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo-daily-cashback__feature-item {
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promo-daily-cashback__feature-item:hover {
  transform: translateY(-8px);
  background-color: #FCBC45; /* Login button color on hover */
  color: #000000;
}

.page-promo-daily-cashback__feature-item:hover .page-promo-daily-cashback__feature-title,
.page-promo-daily-cashback__feature-item:hover .page-promo-daily-cashback__feature-description {
  color: #000000;
}

.page-promo-daily-cashback__feature-title {
  font-size: 1.8em;
  color: #000000; /* Primary color */
  margin-bottom: 15px;
}

.page-promo-daily-cashback__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-promo-daily-cashback__faq-item {
  background-color: #fcfcfc;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promo-daily-cashback__faq-question {
  font-size: 1.3em;
  color: #000000; /* Primary color */
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-promo-daily-cashback__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promo-daily-cashback__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 25px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo-daily-cashback__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-promo-daily-cashback__cta-final {
  background-color: #000000; /* Primary color */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-promo-daily-cashback__cta-container .page-promo-daily-cashback__section-title,
.page-promo-daily-cashback__cta-container .page-promo-daily-cashback__text-content {
  color: #FFFFFF;
}

.page-promo-daily-cashback__cta-container .page-promo-daily-cashback__section-title::after {
  background-color: #FCBC45;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 3em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1.2em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 2.2em;
  }
  .page-promo-daily-cashback__sub-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-cashback {
    padding-top: var(--header-offset, 120px);
  }
  .page-promo-daily-cashback__hero-content {
    padding: 20px;
  }
  .page-promo-daily-cashback__hero-title {
    font-size: 2.5em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1em;
  }
  .page-promo-daily-cashback__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-cashback__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo-daily-cashback__section {
    padding: 40px 0;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-cashback__list,
  .page-promo-daily-cashback__feature-list {
    grid-template-columns: 1fr;
  }
  .page-promo-daily-cashback__table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  .page-promo-daily-cashback__table-head,
  .page-promo-daily-cashback__table-body {
    display: block;
  }
  .page-promo-daily-cashback__table-row {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #eeeeee;
  }
  .page-promo-daily-cashback__table-header,
  .page-promo-daily-cashback__table-data {
    width: 100%;
    box-sizing: border-box;
    border-bottom: none;
  }
  .page-promo-daily-cashback__table-header {
    background-color: #000000;
    color: #FFFFFF;
  }
  .page-promo-daily-cashback__table-data::before {
    content: attr(data-label);
    font-weight: bold;
    display: inline-block;
    width: 120px;
    margin-right: 10px;
    color: #FCBC45;
  }
  .page-promo-daily-cashback__container img,
  .page-promo-daily-cashback__image-content {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-promo-daily-cashback__faq-question {
    font-size: 1.1em;
  }
  .page-promo-daily-cashback__faq-question::after {
    font-size: 1.2em;
  }
  /* Mobile content area images must not overflow */
  .page-promo-daily-cashback img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-daily-cashback {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 2em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-cashback__sub-title {
    font-size: 1.5em;
  }
  .page-promo-daily-cashback__list-title,
  .page-promo-daily-cashback__feature-title {
    font-size: 1.3em;
  }
}