/* style/promotions-cashback.css */
.page-promotions-cashback {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text on dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

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

.page-promotions-cashback__hero-section {
  background: linear-gradient(135deg, #0A192F, #1A3A60);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions-cashback__hero-subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions-cashback__btn--primary {
  background-color: #FFD700; /* Accent color for primary button */
  color: #0A192F;
}

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

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

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

.page-promotions-cashback__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 10px;
}

.page-promotions-cashback__content-section {
  padding: 60px 0;
  text-align: left;
}

.page-promotions-cashback__content-section:nth-child(even) {
  background-color: #1A2B40;
}

.page-promotions-cashback__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-promotions-cashback__content-section p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #E0E0E0;
}

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

.page-promotions-cashback__content-section ul,
.page-promotions-cashback__content-section ol {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-promotions-cashback__content-section ol {
  list-style-type: decimal;
}

.page-promotions-cashback__content-section li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-promotions-cashback__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.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__type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-cashback__card {
  background-color: #1A2B40;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

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

.page-promotions-cashback__card-title {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions-cashback__card p {
  font-size: 1em;
  color: #CCCCCC;
}

.page-promotions-cashback__steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-promotions-cashback__steps li {
  background-color: #1A2B40;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A192F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
}

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

.page-promotions-cashback__faq-item {
  background-color: #1A2B40;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-promotions-cashback__faq-answer {
  color: #E0E0E0;
  font-size: 1em;
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #2A3F5B;
}

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

/* Links within content */
.page-promotions-cashback__content-section a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions-cashback__content-section a:hover {
  color: #E6C200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-cashback__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-cashback__section-title {
    font-size: 2em;
  }
  .page-promotions-cashback__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-cashback__grid--reverse .page-promotions-cashback__grid-item:first-child {
    order: 1;
  }
  .page-promotions-cashback__grid--reverse .page-promotions-cashback__grid-item:last-child {
    order: 0;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-cashback__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-cashback__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback__card {
    padding: 20px;
  }
  .page-promotions-cashback__card-icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions-cashback__steps li {
    padding-left: 60px;
  }
  .page-promotions-cashback__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-cashback__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-cashback__btn {
    display: block;
    margin: 10px auto;
  }
  .page-promotions-cashback__btn--secondary {
    margin-left: auto;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.5em;
  }
  .page-promotions-cashback__card-title {
    font-size: 1.4em;
  }
  .page-promotions-cashback__faq-question {
    font-size: 1.1em;
  }
}