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

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

.page-promotions-cashback-offer__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions-cashback-offer__section:nth-of-type(even) {
  background-color: #fcfcfc;
}

.page-promotions-cashback-offer__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions-cashback-offer__sub-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-promotions-cashback-offer__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions-cashback-offer__text-block--center {
  text-align: center;
}

.page-promotions-cashback-offer__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555;
}

.page-promotions-cashback-offer__list li {
  margin-bottom: 10px;
}

.page-promotions-cashback-offer__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F6C 100%); /* Dark blue gradient */
  padding: 100px 0;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-cashback-offer__hero-content {
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-cashback-offer__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.page-promotions-cashback-offer__hero-title .highlight {
  color: #FFD700;
}

.page-promotions-cashback-offer__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  line-height: 1.5;
  color: #e0e0e0;
}

.page-promotions-cashback-offer__hero-image-wrapper {
  position: absolute;
  bottom: -20px;
  right: -50px;
  opacity: 0.15;
  z-index: 0;
  width: 500px;
  height: 500px;
}

.page-promotions-cashback-offer__hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-promotions-cashback-offer__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-offer__btn--primary {
  background-color: #FFD700;
  color: #0A2342;
  margin-right: 15px;
}

.page-promotions-cashback-offer__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-cashback-offer__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-cashback-offer__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-cashback-offer__feature-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-promotions-cashback-offer__content-with-image {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promotions-cashback-offer__content-with-image--reverse {
  flex-direction: row-reverse;
}

.page-promotions-cashback-offer__text-content {
  flex: 1;
}

.page-promotions-cashback-offer__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions-cashback-offer__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback-offer__how-to-claim .page-promotions-cashback-offer__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-cashback-offer__step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-top: 60px;
}

.page-promotions-cashback-offer__step-number {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFD700;
  color: #0A2342;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 4px solid #0A2342;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback-offer__step-item h3 {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-promotions-cashback-offer__cta-block {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-cashback-offer__cta-block .page-promotions-cashback-offer__btn {
  margin: 10px;
}

.page-promotions-cashback-offer__vip .page-promotions-cashback-offer__list li {
  color: #0A2342;
  font-weight: 500;
}

.page-promotions-cashback-offer__faq-item {
  margin-bottom: 25px;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  border-radius: 4px;
}

.page-promotions-cashback-offer__faq-question {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-cashback-offer__faq-answer {
  font-size: 1.05em;
  color: #555;
}

.page-promotions-cashback-offer__contact-link {
  color: #0A2342;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-cashback-offer__contact-link:hover {
  color: #FFD700;
}

.page-promotions-cashback-offer__final-cta {
  background: linear-gradient(90deg, #0A2342 0%, #1A3F6C 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-promotions-cashback-offer__final-cta-content {
  max-width: 900px;
}

.page-promotions-cashback-offer__section-title--light {
  color: #fff;
}

.page-promotions-cashback-offer__section-title--light::after {
  background-color: #FFD700;
}

.page-promotions-cashback-offer__text-block--light {
  color: #e0e0e0;
}

.page-promotions-cashback-offer .brand-name {
  color: #0A2342;
  font-weight: bold;
}

.page-promotions-cashback-offer__hero-content .brand-name {
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-cashback-offer__hero-title {
    font-size: 3em;
  }

  .page-promotions-cashback-offer__hero-description {
    font-size: 1.2em;
  }

  .page-promotions-cashback-offer__section-title {
    font-size: 2em;
  }

  .page-promotions-cashback-offer__content-with-image {
    flex-direction: column;
  }

  .page-promotions-cashback-offer__content-with-image--reverse {
    flex-direction: column;
  }

  .page-promotions-cashback-offer__image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback-offer__hero-section {
    padding: 80px 0;
  }

  .page-promotions-cashback-offer__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-cashback-offer__hero-description {
    font-size: 1.1em;
  }

  .page-promotions-cashback-offer__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }

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

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

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

  .page-promotions-cashback-offer__feature-grid, .page-promotions-cashback-offer__how-to-claim .page-promotions-cashback-offer__step-by-step {
    grid-template-columns: 1fr;
  }

  .page-promotions-cashback-offer__hero-image-wrapper {
    display: none; /* Hide decorative image on smaller screens */
  }
}

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

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

  .page-promotions-cashback-offer__btn {
    display: block;
    width: 90%;
    margin: 10px auto;
  }

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

  .page-promotions-cashback-offer__faq-question {
    font-size: 1.1em;
  }

  .page-promotions-cashback-offer__step-item {
    padding: 20px;
    padding-top: 50px;
  }

  .page-promotions-cashback-offer__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
}