/* style/promotions-daily-cashback.css */
.page-promotions-daily-cashback {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-promotions-daily-cashback__hero-section {
  background: linear-gradient(135deg, #004D99 0%, #0028ff 100%); /* Dark blue to slightly brighter blue */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-daily-cashback__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,light_texture,NO789]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-daily-cashback__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-promotions-daily-cashback__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-daily-cashback__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-promotions-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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-daily-cashback__button--primary {
  background-color: #FFD700;
  color: #004D99;
}

.page-promotions-daily-cashback__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions-daily-cashback__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions-daily-cashback__button--secondary:hover {
  background-color: #FFD700;
  color: #004D99;
  transform: translateY(-2px);
}

.page-promotions-daily-cashback__button--tertiary {
  background-color: #004D99;
  color: #FFD700;
  border: 2px solid #004D99;
}

.page-promotions-daily-cashback__button--tertiary:hover {
  background-color: #003a73;
  transform: translateY(-2px);
}

.page-promotions-daily-cashback__hero-image-wrapper {
  display: none; /* Hidden on desktop, shown on larger screens if desired */
}

.page-promotions-daily-cashback__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-promotions-daily-cashback__section-title {
  font-size: 2.5em;
  color: #004D99;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions-daily-cashback__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions-daily-cashback__sub-title {
  font-size: 1.8em;
  color: #004D99;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-promotions-daily-cashback__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-promotions-daily-cashback__paragraph--emphasis {
  font-size: 1.3em;
  font-weight: bold;
  color: #004D99;
  text-align: center;
  margin-top: 40px;
}

.page-promotions-daily-cashback__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions-daily-cashback__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-daily-cashback__list li strong {
  color: #004D99;
}

.page-promotions-daily-cashback__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-daily-cashback__faq-container {
  margin-top: 40px;
}

.page-promotions-daily-cashback__faq-item {
  background-color: #f0f8ff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-promotions-daily-cashback__faq-question {
  font-size: 1.3em;
  color: #004D99;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-promotions-daily-cashback__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #e0e0e0;
  margin-top: 10px;
}

.page-promotions-daily-cashback__faq-answer.active {
  display: block;
}

.page-promotions-daily-cashback__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

.page-promotions-daily-cashback a {
  color: #004D99;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .page-promotions-daily-cashback__hero-section .page-promotions-daily-cashback__container {
    display: flex;
    align-items: center;
    text-align: left;
    flex-direction: row;
  }

  .page-promotions-daily-cashback__hero-content {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 0;
  }

  .page-promotions-daily-cashback__hero-title {
    font-size: 4em;
  }

  .page-promotions-daily-cashback__hero-image-wrapper {
    flex: 1;
    display: block;
  }

  .page-promotions-daily-cashback__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }

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

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

@media (max-width: 767px) {
  .page-promotions-daily-cashback__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-daily-cashback__hero-description {
    font-size: 1em;
  }

  .page-promotions-daily-cashback__hero-actions {
    flex-direction: column;
  }

  .page-promotions-daily-cashback__button {
    width: 100%;
    padding: 12px 20px;
  }

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

  .page-promotions-daily-cashback__sub-title {
    font-size: 1.5em;
  }

  .page-promotions-daily-cashback__paragraph,
  .page-promotions-daily-cashback__list li,
  .page-promotions-daily-cashback__faq-question,
  .page-promotions-daily-cashback__faq-answer {
    font-size: 0.95em;
  }
}