/* style/promotions-cashback.css */
.page-promotions-cashback {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0F1A2A; /* Slightly lighter than main for body background */
  line-height: 1.6;
}

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

.page-promotions-cashback__section {
  padding: 60px 0;
}

.page-promotions-cashback__section:nth-child(even) {
  background-color: #1A2B47; /* Main color for alternating sections */
}

.page-promotions-cashback__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-promotions-cashback__section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Slightly darker grey for descriptions */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-cashback__hero {
  background: linear-gradient(135deg, #1A2B47 0%, #0F1A2A 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap-reverse;
  text-align: center;
}

.page-promotions-cashback__hero-content {
  max-width: 600px;
}

.page-promotions-cashback__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-cashback__hero-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.page-promotions-cashback__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-promotions-cashback__btn--primary {
  background-color: #FFD700;
  color: #1A2B47;
  border: 2px solid #FFD700;
}

.page-promotions-cashback__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.page-promotions-cashback__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B47;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions-cashback__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  min-width: 250px;
}

.page-promotions-cashback__hero-image-wrapper {
  flex-shrink: 0;
  max-width: 450px;
}

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

.page-promotions-cashback__what-is-cashback .page-promotions-cashback__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-promotions-cashback__what-is-cashback .page-promotions-cashback__text-content {
  flex: 2;
  min-width: 300px;
}

.page-promotions-cashback__what-is-cashback .page-promotions-cashback__image-wrapper {
  flex: 1;
  min-width: 250px;
}

.page-promotions-cashback__what-is-cashback .page-promotions-cashback__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback p {
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-promotions-cashback h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-promotions-cashback__step-card, .page-promotions-cashback__type-card, .page-promotions-cashback__benefit-item {
  background-color: #0F1A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions-cashback__step-card:hover, .page-promotions-cashback__type-card:hover, .page-promotions-cashback__benefit-item:hover {
  transform: translateY(-10px);
  background-color: #2A3B5A; /* Slightly lighter on hover */
}

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

.page-promotions-cashback__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-cashback__step-title, .page-promotions-cashback__type-title, .page-promotions-cashback__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-cashback__callout-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: #FFD700;
}

.page-promotions-cashback__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-cashback__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions-cashback__guide-list {
  list-style: decimal;
  margin-left: 20px;
  padding-left: 0;
  color: #E0E0E0;
  max-width: 800px;
  margin: 40px auto;
}

.page-promotions-cashback__guide-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-promotions-cashback__guide-list li strong {
  color: #FFD700;
}

.page-promotions-cashback__note {
  background-color: #2A3B5A;
  padding: 20px;
  border-left: 5px solid #FFD700;
  margin-top: 30px;
  border-radius: 5px;
  font-style: italic;
  color: #E0E0E0;
}

.page-promotions-cashback__terms-list {
  list-style: disc;
  margin-left: 20px;
  padding-left: 0;
  color: #E0E0E0;
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions-cashback__terms-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-promotions-cashback__terms-list li strong {
  color: #FFD700;
}

.page-promotions-cashback__text-center {
  text-align: center;
}

.page-promotions-cashback__cta-block {
  background-color: #1A2B47;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-cashback__cta-text {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

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

.page-promotions-cashback__faq-item {
  background-color: #1A2B47;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #2A3B5A; /* Darker background for question */
  transition: background-color 0.3s ease;
}

.page-promotions-cashback__faq-question:hover {
  background-color: #3B4D6C;
}

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

.page-promotions-cashback__faq-item.active .page-promotions-cashback__faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.page-promotions-cashback__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #1A2B47;
  color: #E0E0E0;
}

.page-promotions-cashback__faq-item.active .page-promotions-cashback__faq-answer {
  max-height: 200px; /* Adjust based on expected content height */
  padding: 20px;
}

.page-promotions-cashback__faq-answer p {
  margin: 0;
}

.page-promotions-cashback__final-cta {
  background-color: #0F1A2A;
  padding-bottom: 80px;
}

.page-promotions-cashback__contact-prompt {
  margin-top: 30px;
  font-size: 1.1em;
  color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-cashback__hero {
    flex-direction: column;
    padding: 80px 20px;
  }

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

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

  .page-promotions-cashback__what-is-cashback .page-promotions-cashback__content-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-cashback__what-is-cashback .page-promotions-cashback__text-content, 
  .page-promotions-cashback__what-is-cashback .page-promotions-cashback__image-wrapper {
    min-width: unset;
    width: 100%;
  }

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

  .page-promotions-cashback__steps-grid, .page-promotions-cashback__type-grid, .page-promotions-cashback__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

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

  .page-promotions-cashback__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-cashback__btn {
    width: 100%;
    max-width: 300px;
  }

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

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

  .page-promotions-cashback__guide-list, .page-promotions-cashback__terms-list, .page-promotions-cashback__faq-list {
    margin-left: 0;
    padding-left: 15px;
  }

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

  .page-promotions-cashback__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-promotions-cashback__faq-question::after {
    right: 15px;
  }
}

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

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

  .page-promotions-cashback__hero-image-wrapper {
    order: -1; /* Image above text on small screens */
  }

  .page-promotions-cashback__btn--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }

  .page-promotions-cashback__step-card, .page-promotions-cashback__type-card, .page-promotions-cashback__benefit-item {
    padding: 20px;
  }

  .page-promotions-cashback__faq-question {
    font-size: 1em;
  }
}