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

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

.page-promo-daily-cashback__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.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, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-promo-daily-cashback__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promo-daily-cashback__button--register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-promo-daily-cashback__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-left: 20px;
}

.page-promo-daily-cashback__button--login:hover {
  background-color: #e6a73c;
  border-color: #e6a73c;
  transform: translateY(-2px);
}

.page-promo-daily-cashback__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

.page-promo-daily-cashback__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Hero Section */
.page-promo-daily-cashback__hero-section {
  position: relative;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  color: #FFFFFF;
  text-align: center;
}

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

.page-promo-daily-cashback__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
}

.page-promo-daily-cashback__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

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

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

/* Overview Section */
.page-promo-daily-cashback__overview-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

/* How It Works Section */
.page-promo-daily-cashback__how-it-works-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-promo-daily-cashback__step-card {
  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;
}

.page-promo-daily-cashback__step-card:hover {
  transform: translateY(-10px);
}

.page-promo-daily-cashback__step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-promo-daily-cashback__cta-small {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #e6f7ff;
  border-radius: 10px;
  border: 1px solid #cceeff;
}

.page-promo-daily-cashback__cta-text {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 30px;
}

/* Benefits Section */
.page-promo-daily-cashback__benefits-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-promo-daily-cashback__benefit-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.page-promo-daily-cashback__benefit-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promo-daily-cashback__benefit-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

/* Rules Section */
.page-promo-daily-cashback__rules-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-promo-daily-cashback__rules-content {
  margin-top: 40px;
}

.page-promo-daily-cashback__rules-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-promo-daily-cashback__rules-list li {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  line-height: 1.8;
  border-left: 5px solid #FCBC45;
}

.page-promo-daily-cashback__list-highlight {
  color: #000000;
}

/* FAQ Section */
.page-promo-daily-cashback__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-promo-daily-cashback__faq-list {
  margin-top: 40px;
}

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

.page-promo-daily-cashback__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eee;
}

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

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

.page-promo-daily-cashback__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  margin: 0;
  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: 20px;
}

/* Final CTA Section */
.page-promo-daily-cashback__final-cta-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-promo-daily-cashback__final-cta-section .page-promo-daily-cashback__section-title {
  color: #FFFFFF;
}

.page-promo-daily-cashback__final-cta-section .page-promo-daily-cashback__section-title::after {
  background-color: #FCBC45;
}

.page-promo-daily-cashback__final-cta-section .page-promo-daily-cashback__text {
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

/* Responsive Design */
@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: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 2.5em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 1.1em;
  }
  .page-promo-daily-cashback__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-daily-cashback__button--login {
    margin-left: 0;
  }
  .page-promo-daily-cashback__hero-container {
    padding: 30px;
  }

  .page-promo-daily-cashback__steps, .page-promo-daily-cashback__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promo-daily-cashback__step-card, .page-promo-daily-cashback__benefit-card {
    padding: 20px;
  }

  .page-promo-daily-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promo-daily-cashback__text {
    font-size: 1em;
  }

  /* Mobile image handling to prevent overflow */
  .page-promo-daily-cashback img {
    max-width: 100%;
    height: auto;
  }

  .page-promo-daily-cashback__step-image, .page-promo-daily-cashback__benefit-image {
    height: auto; /* Allow image height to adjust */
    min-height: 200px; /* Ensure minimum size */
  }
  
  .page-promo-daily-cashback__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promo-daily-cashback__hero-title {
    font-size: 2em;
  }
  .page-promo-daily-cashback__hero-description {
    font-size: 0.95em;
  }
  .page-promo-daily-cashback__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo-daily-cashback__section-title {
    font-size: 1.5em;
  }
  .page-promo-daily-cashback__cta-small {
    padding: 20px;
  }
  .page-promo-daily-cashback__cta-text {
    font-size: 1.1em;
  }
}