/* style/promotions-cashback-offer.css */
.page-promotions-cashback-offer {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions-cashback-offer__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Ensure background consistency */
  overflow: hidden;
}

.page-promotions-cashback-offer__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-promotions-cashback-offer__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions-cashback-offer__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-promotions-cashback-offer__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-promotions-cashback-offer__description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-cashback-offer__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 255, 100, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-cashback-offer__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 100, 0.4);
}

.page-promotions-cashback-offer__cta-button--secondary {
  background: #22C768; /* Auxiliary color */
  color: #08160F; /* Dark text for contrast */
  box-shadow: none;
}

.page-promotions-cashback-offer__cta-button--secondary:hover {
  background: #11A84E;
  color: #F2FFF6;
}

.page-promotions-cashback-offer__cta-button--outline {
  background: transparent;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  box-shadow: none;
}

.page-promotions-cashback-offer__cta-button--outline:hover {
  background: #2AD16F;
  color: #ffffff;
}

/* General Section Styles */
.page-promotions-cashback-offer__intro-section,
.page-promotions-cashback-offer__types-section,
.page-promotions-cashback-offer__terms-section,
.page-promotions-cashback-offer__how-to-claim-section,
.page-promotions-cashback-offer__tips-section,
.page-promotions-cashback-offer__faq-section,
.page-promotions-cashback-offer__conclusion-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-promotions-cashback-offer__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  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: linear-gradient(90deg, #13994A 0%, #2AD16F 100%);
  border-radius: 2px;
}

.page-promotions-cashback-offer__subsection-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #22C768; /* Auxiliary Color */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions-cashback-offer__text-block {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-cashback-offer__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  object-fit: cover;
}

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

.page-promotions-cashback-offer__list-item {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-promotions-cashback-offer__list-item::before {
  content: '✓';
  color: #2AD16F;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-cashback-offer__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: my-counter;
  margin: 30px 0;
}

.page-promotions-cashback-offer__numbered-list .page-promotions-cashback-offer__list-item {
  padding-left: 40px;
}

.page-promotions-cashback-offer__numbered-list .page-promotions-cashback-offer__list-item::before {
  content: counter(my-counter) ".";
  counter-increment: my-counter;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 1.2rem;
  left: 0;
  top: 0;
}

/* Card Grid */
.page-promotions-cashback-offer__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-promotions-cashback-offer__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions-cashback-offer__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.page-promotions-cashback-offer__card-title {
  font-size: 1.4rem;
  color: #2AD16F;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-cashback-offer__card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-promotions-cashback-offer__card-link {
  display: inline-block;
  color: #F2C14E; /* Gold */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-promotions-cashback-offer__card-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions-cashback-offer__faq-list {
  margin-top: 40px;
}

.page-promotions-cashback-offer__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-cashback-offer__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

.page-promotions-cashback-offer__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

.page-promotions-cashback-offer__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-cashback-offer__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2AD16F;
  margin-left: 15px;
}

.page-promotions-cashback-offer__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-promotions-cashback-offer__faq-item[open] .page-promotions-cashback-offer__faq-question {
  background-color: #1E3A2A;
}

.page-promotions-cashback-offer__faq-item[open] .page-promotions-cashback-offer__faq-toggle {
  content: '−';
}

/* Conclusion Section */
.page-promotions-cashback-offer__conclusion-section .page-promotions-cashback-offer__text-block {
  text-align: center;
  font-size: 1.1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Links within text */
.page-promotions-cashback-offer a {
  color: #F2C14E; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions-cashback-offer a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-cashback-offer__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions-cashback-offer__description {
    font-size: 1rem;
  }
  .page-promotions-cashback-offer__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-promotions-cashback-offer__subsection-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  }
  .page-promotions-cashback-offer__card-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-cashback-offer {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-cashback-offer__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions-cashback-offer__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-promotions-cashback-offer__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-promotions-cashback-offer__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .page-promotions-cashback-offer__cta-button,
  .page-promotions-cashback-offer a[class*="button"],
  .page-promotions-cashback-offer a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 1rem !important;
  }

  .page-promotions-cashback-offer__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions-cashback-offer__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-promotions-cashback-offer__subsection-title {
    font-size: clamp(1.3rem, 5vw, 1.6rem);
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-promotions-cashback-offer__intro-section,
  .page-promotions-cashback-offer__types-section,
  .page-promotions-cashback-offer__terms-section,
  .page-promotions-cashback-offer__how-to-claim-section,
  .page-promotions-cashback-offer__tips-section,
  .page-promotions-cashback-offer__faq-section,
  .page-promotions-cashback-offer__conclusion-section {
    padding: 40px 0;
  }

  .page-promotions-cashback-offer__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions-cashback-offer img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-cashback-offer__image-content {
    margin: 30px auto;
  }

  .page-promotions-cashback-offer__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-cashback-offer__card {
    padding: 25px;
  }

  .page-promotions-cashback-offer__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-promotions-cashback-offer__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
}