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

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

.page-promotions-cashback-offer__hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

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

.page-promotions-cashback-offer__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-promotions-cashback-offer__hero-btn {
  display: inline-block;
  background-color: #ff8400; /* Complementary color for emphasis */
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promotions-cashback-offer__hero-btn:hover {
  background-color: #e67600;
}

.page-promotions-cashback-offer__content-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-promotions-cashback-offer__text-block {
  margin-bottom: 40px;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-promotions-cashback-offer__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 25px;
  border-bottom: 3px solid #28a745;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-promotions-cashback-offer__sub-section-title {
  font-size: 1.6em;
  color: #28a745;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions-cashback-offer__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #495057;
}

.page-promotions-cashback-offer__text-block a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-cashback-offer__text-block a:hover {
  text-decoration: underline;
}

.page-promotions-cashback-offer__list,
.page-promotions-cashback-offer__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #495057;
}

.page-promotions-cashback-offer__ordered-list {
  list-style-type: decimal;
}

.page-promotions-cashback-offer__list li,
.page-promotions-cashback-offer__ordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-promotions-cashback-offer__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

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

.page-promotions-cashback-offer__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin-top: 20px;
  margin-right: 15px;
  text-align: center;
}

.page-promotions-cashback-offer__btn--primary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.page-promotions-cashback-offer__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-promotions-cashback-offer__btn--secondary {
  background-color: #28a745;
  color: #fff;
  border: 1px solid #28a745;
}

.page-promotions-cashback-offer__btn--secondary:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
}

.page-promotions-cashback-offer__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions-cashback-offer__faq-list {
  margin-top: 30px;
}

.page-promotions-cashback-offer__faq-question {
  font-weight: bold;
  color: #007bff;
  font-size: 1.15em;
  margin-top: 20px;
  cursor: pointer;
}

.page-promotions-cashback-offer__faq-question::before {
  content: '+ ';
  color: #28a745;
}

.page-promotions-cashback-offer__faq-answer {
  margin-left: 25px;
  padding-top: 10px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e9ecef;
  color: #495057;
  display: none; /* Initially hidden */
}

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

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

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

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

  .page-promotions-cashback-offer__text-block {
    padding: 20px;
  }
  
  .page-promotions-cashback-offer__btn {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promotions-cashback-offer__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

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

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

  .page-promotions-cashback-offer__hero-section {
    padding: 60px 0;
  }

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

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

/* Floating CTA */
.page-promotions-cashback-offer__floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    font-size: 1.05em;
}

.page-promotions-cashback-offer__floating-cta:hover {
    background-color: #1e7e34;
}

.page-promotions-cashback-offer__floating-cta svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}