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

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

.page-promotions-cashback__hero {
  background: linear-gradient(135deg, #0A2463 0%, #1f46b5 100%); /* Dark blue to a slightly lighter blue for depth */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

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

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

.page-promotions-cashback__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions-cashback__hero-btn {
  display: inline-block;
  background-color: #E0B94A; /* Gold button */
  color: #0A2463;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__hero-btn:hover {
  background-color: #f5db9c; /* Lighter gold on hover */
  transform: translateY(-3px);
}

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

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

.page-promotions-cashback__intro, 
.page-promotions-cashback__how-it-works, 
.page-promotions-cashback__types, 
.page-promotions-cashback__benefits, 
.page-promotions-cashback__how-to-claim, 
.page-promotions-cashback__tips, 
.page-promotions-cashback__conclusion {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-cashback__intro p,
.page-promotions-cashback__types p,
.page-promotions-cashback__benefits p,
.page-promotions-cashback__how-to-claim p,
.page-promotions-cashback__tips p,
.page-promotions-cashback__conclusion p {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.page-promotions-cashback__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Dark blue for main titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-cashback__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B94A; /* Gold underline */
  border-radius: 2px;
}

.page-promotions-cashback__flex-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.page-promotions-cashback__grid-item {
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 calc(50% - 30px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 450px;
}

.page-promotions-cashback__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-cashback__grid-item h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.page-promotions-cashback__icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.page-promotions-cashback__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-promotions-cashback__list li {
  background-color: #fbfbfb;
  border-left: 5px solid #E0B94A;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-cashback__list li strong {
  color: #0A2463;
}

.page-promotions-cashback__list-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promotions-cashback__list-benefits li {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  position: relative;
  padding-left: 45px;
}

.page-promotions-cashback__list-benefits li::before {
  content: '✔';
  color: #E0B94A;
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 15px;
}

.page-promotions-cashback__steps {
  list-style: decimal;
  padding-left: 40px;
  margin: 30px 0;
}

.page-promotions-cashback__steps li {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333;
}

.page-promotions-cashback__steps li strong {
  color: #0A2463;
}

.page-promotions-cashback__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-cashback__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #0A2463;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__cta-block p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-promotions-cashback__btn {
  display: inline-block;
  background-color: #E0B94A;
  color: #0A2463;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-cashback__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-cashback__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions-cashback__section-title {
    font-size: 2em;
  }
  .page-promotions-cashback__flex-grid {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-cashback__grid-item {
    flex: 1 1 90%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback__hero {
    padding: 60px 0;
  }
  .page-promotions-cashback__hero-title {
    font-size: 2em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-cashback__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-cashback__intro, 
  .page-promotions-cashback__how-it-works, 
  .page-promotions-cashback__types, 
  .page-promotions-cashback__benefits, 
  .page-promotions-cashback__how-to-claim, 
  .page-promotions-cashback__tips, 
  .page-promotions-cashback__conclusion {
    padding: 40px 0;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-cashback__list li,
  .page-promotions-cashback__list-benefits li,
  .page-promotions-cashback__steps li {
    font-size: 0.95em;
  }
  .page-promotions-cashback__cta-block p {
    font-size: 1.1em;
  }
  .page-promotions-cashback__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-cashback__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.5em;
  }
  .page-promotions-cashback__grid-item {
    padding: 20px;
  }
  .page-promotions-cashback__grid-item h3 {
    font-size: 1.4em;
  }
  .page-promotions-cashback__icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions-cashback__list li,
  .page-promotions-cashback__list-benefits li,
  .page-promotions-cashback__steps li {
    font-size: 0.9em;
  }
  .page-promotions-cashback__cta-block p {
    font-size: 1em;
  }
  .page-promotions-cashback__btn,
  .page-promotions-cashback__btn--large {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}