/* style/promotions-cashback.css */
.page-promotions-cashback {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Primary dark blue background */
  line-height: 1.6;
}

.page-promotions-cashback__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark blue gradient */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700; /* Gold for hero text */
}

.page-promotions-cashback__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promotions-cashback__hero h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-cashback__hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0; /* Lighter text for description */
}

.page-promotions-cashback__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-promotions-cashback__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.page-promotions-cashback__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-promotions-cashback__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-cashback__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-promotions-cashback__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-promotions-cashback__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions-cashback__section:nth-of-type(even) {
  background-color: #1a2a47; /* Slightly lighter dark blue for alternating sections */
}

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

.page-promotions-cashback__section h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles */
  font-weight: bold;
}

.page-promotions-cashback__section h3 {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #e0e0e0; /* Light gray for sub-titles */
}

.page-promotions-cashback__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-bottom: 40px;
}

.page-promotions-cashback__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-promotions-cashback__text-content {
  flex: 1;
}

.page-promotions-cashback__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-cashback__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback__about-cashback p, .page-promotions-cashback__benefits ul li, .page-promotions-cashback__how-it-works ol li {
  font-size: 1.1em;
  color: #c0c0c0; /* Slightly muted text for body */
  margin-bottom: 15px;
}

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

.page-promotions-cashback__about-cashback a:hover {
  color: #e6c200;
}

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

.page-promotions-cashback__grid-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #FFD700;
}

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

.page-promotions-cashback__grid-item h3 {
  color: #FFD700;
  margin-top: 0;
  font-size: 1.5em;
}

.page-promotions-cashback__grid-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-promotions-cashback__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-cashback__note {
  font-style: italic;
  margin-top: 30px;
  color: #e0e0e0;
}

.page-promotions-cashback__note a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-cashback__note a:hover {
  color: #e6c200;
}

.page-promotions-cashback__how-it-works ol {
  list-style-type: decimal;
  padding-left: 25px;
  color: #c0c0c0;
}

.page-promotions-cashback__how-it-works ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promotions-cashback__how-it-works ol li strong {
  color: #FFD700;
}

.page-promotions-cashback__benefits ul {
  list-style-type: disc;
  padding-left: 25px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions-cashback__benefits ul li {
  margin-bottom: 10px;
  color: #c0c0c0;
  font-size: 1.1em;
}

.page-promotions-cashback__benefits a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-cashback__benefits a:hover {
  color: #e6c200;
}

.page-promotions-cashback__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promotions-cashback__faq-item {
  background-color: #1a2a47;
  border: 1px solid #334466;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__faq-item h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-cashback__faq-item p {
  color: #c0c0c0;
  font-size: 1em;
  margin-bottom: 0;
}

.page-promotions-cashback__cta {
  background: linear-gradient(90deg, #0A1931, #1a2a47);
  padding: 80px 20px;
}

.page-promotions-cashback__cta-content {
  max-width: 900px;
}

.page-promotions-cashback__cta h2 {
  color: #FFD700;
  margin-bottom: 25px;
  font-size: 2.8em;
}

.page-promotions-cashback__cta p {
  color: #e0e0e0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-cashback__hero h1 {
    font-size: 2.8em;
  }

  .page-promotions-cashback__hero p {
    font-size: 1.1em;
  }

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

  .page-promotions-cashback__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-cashback__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-promotions-cashback__text-content, .page-promotions-cashback__image-content {
    width: 100%;
  }

  .page-promotions-cashback__grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-cashback__benefits ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback__hero {
    padding: 60px 15px;
  }

  .page-promotions-cashback__hero h1 {
    font-size: 2.2em;
  }

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

  .page-promotions-cashback__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promotions-cashback__section h2 {
    font-size: 1.8em;
  }

  .page-promotions-cashback__section h3 {
    font-size: 1.4em;
  }

  .page-promotions-cashback__about-cashback p, .page-promotions-cashback__benefits ul li, .page-promotions-cashback__how-it-works ol li, .page-promotions-cashback__faq-item p {
    font-size: 0.95em;
  }

  .page-promotions-cashback__cta h2 {
    font-size: 2.2em;
  }

  .page-promotions-cashback__cta p {
    font-size: 1em;
  }

  .page-promotions-cashback__cta-buttons {
    flex-direction: column;
  }
}