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

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

.page-promotions-cashback__hero-section {
  background: linear-gradient(135deg, #0A2463, #3A5A93);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions-cashback__hero-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

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

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

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

.page-promotions-cashback__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 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: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-cashback__hero-image {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 300px;
  max-width: 40%;
  height: auto;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  animation: page-promotions-cashback__float 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes page-promotions-cashback__float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.page-promotions-cashback__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-promotions-cashback__section-title {
  font-size: 2.2em;
  color: #0A2463;
  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: #FFD700;
  border-radius: 2px;
}

.page-promotions-cashback__text-block {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.page-promotions-cashback__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-cashback__feature-card {
  background-color: #f0f5fa;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  position: relative;
  padding-top: 100px; /* Space for icon */
}

.page-promotions-cashback__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-cashback__feature-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0A2463;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-cashback__feature-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions-cashback__feature-description {
  font-size: 0.95em;
  color: #666;
}

.page-promotions-cashback__benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promotions-cashback__benefits-list li {
  background-color: #f0f5fa;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.05em;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-promotions-cashback__faq-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-promotions-cashback__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-cashback__faq-question {
  font-size: 1.15em;
  color: #0A2463;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #eef4f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.page-promotions-cashback__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions-cashback__faq-answer {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promotions-cashback__faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #666;
}

.page-promotions-cashback__special-offer-banner {
  background: linear-gradient(90deg, #0A2463, #3A5A93);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-promotions-cashback__special-offer-content {
  flex: 2;
  z-index: 1;
}

.page-promotions-cashback__special-offer-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-cashback__special-offer-description {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-promotions-cashback__special-offer-image {
  flex: 1;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-promotions-cashback__cta-actions {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-cashback__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback__hero-image {
    display: none;
  }
  .page-promotions-cashback__special-offer-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-cashback__special-offer-image {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback__hero-section {
    padding: 60px 0;
  }
  .page-promotions-cashback__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-cashback__hero-description {
    font-size: 1em;
  }
  .page-promotions-cashback__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.6em;
  }
  .page-promotions-cashback__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-cashback__special-offer-title {
    font-size: 1.6em;
  }
  .page-promotions-cashback__special-offer-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions-cashback__hero-section {
    padding: 40px 0;
  }
  .page-promotions-cashback__hero-title {
    font-size: 1.5em;
  }
  .page-promotions-cashback__btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-promotions-cashback__hero-actions, .page-promotions-cashback__cta-actions {
    flex-direction: column;
  }
  .page-promotions-cashback__section-title {
    font-size: 1.4em;
  }
  .page-promotions-cashback__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions-cashback__special-offer-banner {
    padding: 30px;
  }
  .page-promotions-cashback__special-offer-title {
    font-size: 1.4em;
  }
  .page-promotions-cashback__special-offer-image {
    max-width: 180px;
  }
}