.page-promotions-daily-cashback {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #f4f4f4;
  line-height: 1.6;
}

.page-promotions-daily-cashback__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #2C3E50 0%, #D4AF37 100%); /* Adjusted gradient for better contrast */
  color: #ffffff;
  overflow: hidden;
}

.page-promotions-daily-cashback__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions-daily-cashback__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-promotions-daily-cashback__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-promotions-daily-cashback__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions-daily-cashback__intro-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-cashback__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #D4AF37; /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-promotions-daily-cashback__cta-button:hover {
  background: #C0A030; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback__cta-button--large {
  padding: 20px 60px;
  font-size: 1.4em;
}

.page-promotions-daily-cashback__section {
  padding: 80px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.page-promotions-daily-cashback__section--intro {
  background-color: #ffffff;
}

.page-promotions-daily-cashback__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #2C3E50; /* Auxiliary brand color */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.page-promotions-daily-cashback__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-promotions-daily-cashback__paragraph a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-cashback__paragraph a:hover {
  text-decoration: underline;
}

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

.page-promotions-daily-cashback__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-daily-cashback__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-daily-cashback__card-title {
  font-size: 1.6em;
  color: #2C3E50;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-promotions-daily-cashback__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-promotions-daily-cashback__card-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-daily-cashback__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #D4AF37;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-promotions-daily-cashback__btn-primary:hover {
  background: #C0A030;
  transform: translateY(-2px);
}

.page-promotions-daily-cashback__note {
  background-color: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 20px;
  margin-top: 50px;
  color: #616161;
  font-size: 0.95em;
  line-height: 1.6;
}

.page-promotions-daily-cashback__note strong {
  color: #D4AF37;
}

.page-promotions-daily-cashback__note a {
  color: #2C3E50;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions-daily-cashback__note a:hover {
  text-decoration: underline;
}

.page-promotions-daily-cashback__section--how-to-join {
  background-color: #f9f9f9;
}

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

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

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

.page-promotions-daily-cashback__step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 10px rgba(212, 175, 55, 0.3));
}

.page-promotions-daily-cashback__step-item h3 {
  font-size: 1.4em;
  color: #2C3E50;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promotions-daily-cashback__center-cta {
  margin-top: 60px;
  text-align: center;
}

.page-promotions-daily-cashback__section--faq {
  background-color: #ffffff;
}

.page-promotions-daily-cashback__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-daily-cashback__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.page-promotions-daily-cashback__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-daily-cashback__faq-question:hover {
  background: #f5f5f5;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-question {
  background: #D4AF37;
  color: #ffffff;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-question h3 {
  color: #ffffff;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-toggle {
  color: #ffffff;
}

.page-promotions-daily-cashback__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #2C3E50;
}

.page-promotions-daily-cashback__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #D4AF37;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-toggle {
  transform: rotate(180deg);
  color: #ffffff;
}

.page-promotions-daily-cashback__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background-color: #fcfcfc;
  color: #555555;
}

.page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-daily-cashback__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promotions-daily-cashback__faq-answer a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-cashback__faq-answer a:hover {
  text-decoration: underline;
}

.page-promotions-daily-cashback__section--why-us {
  background-color: #2C3E50;
  color: #ffffff;
}

.page-promotions-daily-cashback__section--why-us .page-promotions-daily-cashback__section-title {
  color: #D4AF37;
}

.page-promotions-daily-cashback__section--why-us .page-promotions-daily-cashback__section-title::after {
  background-color: #ffffff;
}

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

.page-promotions-daily-cashback__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions-daily-cashback__feature-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.page-promotions-daily-cashback__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: brightness(1.2) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.page-promotions-daily-cashback__feature-card h3 {
  font-size: 1.5em;
  color: #D4AF37;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-daily-cashback__feature-card p {
  font-size: 1em;
  color: #cccccc;
}

.page-promotions-daily-cashback__feature-card a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-daily-cashback__feature-card a:hover {
  text-decoration: underline;
}

.page-promotions-daily-cashback__section--cta-bottom {
  padding: 100px 20px;
  background: linear-gradient(135deg, #D4AF37 0%, #2C3E50 100%);
  color: #ffffff;
}

.page-promotions-daily-cashback__section--cta-bottom .page-promotions-daily-cashback__section-title {
  color: #ffffff;
}

.page-promotions-daily-cashback__section--cta-bottom .page-promotions-daily-cashback__section-title::after {
  background-color: #ffffff;
}

.page-promotions-daily-cashback__section--cta-bottom .page-promotions-daily-cashback__paragraph {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions-daily-cashback__section--cta-bottom .page-promotions-daily-cashback__paragraph a {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-daily-cashback__main-title {
    font-size: 2.8em;
  }

  .page-promotions-daily-cashback__intro-text {
    font-size: 1.2em;
  }

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

  .page-promotions-daily-cashback__hero-image img,
  .page-promotions-daily-cashback__card-image,
  .page-promotions-daily-cashback__step-icon,
  .page-promotions-daily-cashback__feature-icon {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-promotions-daily-cashback__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-cashback__hero-image {
    margin-bottom: 20px;
    border-radius: 8px;
  }

  .page-promotions-daily-cashback__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-promotions-daily-cashback__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promotions-daily-cashback__cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-daily-cashback__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
  }

  .page-promotions-daily-cashback__section {
    padding: 50px 15px;
  }

  .page-promotions-daily-cashback__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-daily-cashback__paragraph {
    font-size: 0.95em;
  }

  .page-promotions-daily-cashback__grid,
  .page-promotions-daily-cashback__steps,
  .page-promotions-daily-cashback__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions-daily-cashback__card,
  .page-promotions-daily-cashback__step-item,
  .page-promotions-daily-cashback__feature-card {
    padding: 25px;
  }

  .page-promotions-daily-cashback__card-image {
    height: 180px;
  }

  .page-promotions-daily-cashback__card-title {
    font-size: 1.4em;
  }

  .page-promotions-daily-cashback__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions-daily-cashback__faq-question {
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .page-promotions-daily-cashback__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }

  .page-promotions-daily-cashback__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }

  .page-promotions-daily-cashback__faq-answer {
    padding: 0 20px;
  }

  .page-promotions-daily-cashback__faq-item.active .page-promotions-daily-cashback__faq-answer {
    padding: 15px 20px !important;
  }

  .page-promotions-daily-cashback__hero-image img,
  .page-promotions-daily-cashback__card img,
  .page-promotions-daily-cashback__step-item img,
  .page-promotions-daily-cashback__feature-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-daily-cashback__container,
  .page-promotions-daily-cashback__hero-container,
  .page-promotions-daily-cashback__grid,
  .page-promotions-daily-cashback__steps,
  .page-promotions-daily-cashback__features-grid,
  .page-promotions-daily-cashback__faq-list,
  .page-promotions-daily-cashback__center-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions-daily-cashback__center-cta .page-promotions-daily-cashback__cta-button {
    margin-left: 0;
    margin-right: 0;
  }
}