.page-promotions-weekly-cashback {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-promotions-weekly-cashback__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions-weekly-cashback__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 700px; /* Limit hero image height */
}

.page-promotions-weekly-cashback__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(17, 40, 27, 0.7); /* Card B G with transparency */
  border-radius: 12px;
  margin-top: 200px; /* Push content down over the image */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions-weekly-cashback__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-promotions-weekly-cashback__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions-weekly-cashback__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-weekly-cashback__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-promotions-weekly-cashback__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-promotions-weekly-cashback__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promotions-weekly-cashback__cta-button--secondary {
  background: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  margin-left: 20px;
}

.page-promotions-weekly-cashback__cta-button--secondary:hover {
  background: #11271B; /* Card B G */
  border-color: #57E38D; /* Glow */
}

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

.page-promotions-weekly-cashback__introduction-section,
.page-promotions-weekly-cashback__how-it-works-section,
.page-promotions-weekly-cashback__benefits-section,
.page-promotions-weekly-cashback__eligibility-section,
.page-promotions-weekly-cashback__comparison-section,
.page-promotions-weekly-cashback__faq-section,
.page-promotions-weekly-cashback__cta-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green for alternating sections */
  margin-bottom: 20px;
  border-radius: 12px;
}

.page-promotions-weekly-cashback__introduction-section {
  background-color: #08160F; /* Background */
  border-radius: 0;
  margin-bottom: 0;
}

.page-promotions-weekly-cashback__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(87, 227, 141, 0.4);
}

.page-promotions-weekly-cashback__text-block {
  font-size: 1.05em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-weekly-cashback__text-block--note {
  font-style: italic;
  color: #57E38D; /* Glow */
  text-align: center;
}

.page-promotions-weekly-cashback__how-it-works-section {
  background-color: #11271B; /* Card B G */
}

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

.page-promotions-weekly-cashback__step-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions-weekly-cashback__step-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-weekly-cashback__step-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions-weekly-cashback__link-button {
  display: inline-block;
  margin-top: auto; /* Push to bottom */
  padding: 10px 20px;
  border-radius: 6px;
  background: #22C768; /* Auxiliary color */
  color: #08160F;
  font-size: 0.95em;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.page-promotions-weekly-cashback__link-button:hover {
  background: #57E38D; /* Glow */
}

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

.page-promotions-weekly-cashback__benefits-item {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #2AD16F;
}

.page-promotions-weekly-cashback__benefits-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions-weekly-cashback__rules-list {
  list-style: disc;
  margin-left: 20px;
  color: #A7D9B8;
}

.page-promotions-weekly-cashback__rules-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-promotions-weekly-cashback__comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-weekly-cashback__comparison-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-promotions-weekly-cashback__comparison-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

.page-promotions-weekly-cashback__comparison-list {
  list-style: none;
  padding: 0;
}

.page-promotions-weekly-cashback__comparison-list li {
  margin-bottom: 8px;
  color: #A7D9B8;
  position: relative;
  padding-left: 25px;
}

.page-promotions-weekly-cashback__comparison-list li::before {
  content: '✓';
  color: #57E38D; /* Glow */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions-weekly-cashback__faq-list {
  margin-top: 40px;
}

.page-promotions-weekly-cashback__faq-item {
  background-color: #0A4B2C; /* Deep Green */\  border: 1px solid #2E7A4E; /* Border */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-weekly-cashback__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  font-size: 1.15em;
  font-weight: 600;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-promotions-weekly-cashback__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions-weekly-cashback__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions-weekly-cashback__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #57E38D; /* Glow */
}

.page-promotions-weekly-cashback__faq-answer {
  padding: 15px 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  background-color: #0A4B2C; /* Deep Green */
  font-size: 1em;
  line-height: 1.6;
}

.page-promotions-weekly-cashback__faq-item[open] .page-promotions-weekly-cashback__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions-weekly-cashback__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #08160F; /* Background */
  margin-bottom: 0;
  border-radius: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions-weekly-cashback__hero-content {
    margin-top: 150px;
    padding: 30px 15px;
  }
  .page-promotions-weekly-cashback__main-title {
    font-size: 2.8em;
  }
  .page-promotions-weekly-cashback__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-weekly-cashback__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-weekly-cashback__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-promotions-weekly-cashback__hero-content {
    margin-top: 100px;
    padding: 25px 15px;
  }
  .page-promotions-weekly-cashback__main-title {
    font-size: 2.2em;
  }
  .page-promotions-weekly-cashback__hero-description {
    font-size: 1em;
  }
  .page-promotions-weekly-cashback__cta-button {
    width: 100% !important;
    margin-bottom: 15px;
    margin-left: 0 !important;
  }
  .page-promotions-weekly-cashback__cta-button--secondary {
    margin-left: 0 !important;
  }
  .page-promotions-weekly-cashback__section-title {
    font-size: 1.8em;
  }
  .page-promotions-weekly-cashback__steps-grid,
  .page-promotions-weekly-cashback__benefits-list,
  .page-promotions-weekly-cashback__comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-weekly-cashback__introduction-section,
  .page-promotions-weekly-cashback__how-it-works-section,
  .page-promotions-weekly-cashback__benefits-section,
  .page-promotions-weekly-cashback__eligibility-section,
  .page-promotions-weekly-cashback__comparison-section,
  .page-promotions-weekly-cashback__faq-section,
  .page-promotions-weekly-cashback__cta-section {
    padding: 40px 0;
  }
  .page-promotions-weekly-cashback__container {
    padding: 0 15px;
  }
  .page-promotions-weekly-cashback img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions-weekly-cashback__hero-image {
    max-height: 400px;
  }
  .page-promotions-weekly-cashback__step-icon {
    max-width: 180px;
  }
  .page-promotions-weekly-cashback__cta-buttons,
  .page-promotions-weekly-cashback__button-group,
  .page-promotions-weekly-cashback__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    align-items: center;
  }
  .page-promotions-weekly-cashback__cta-button,
  .page-promotions-weekly-cashback__btn-primary,
  .page-promotions-weekly-cashback__btn-secondary,
  .page-promotions-weekly-cashback a[class*="button"],
  .page-promotions-weekly-cashback 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;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-weekly-cashback__main-title {
    font-size: 1.8em;
  }
  .page-promotions-weekly-cashback__section-title {
    font-size: 1.5em;
  }
  .page-promotions-weekly-cashback__hero-content {
    margin-top: 80px;
  }
}

/* Contrast fixes */
.page-promotions-weekly-cashback__dark-bg {
  color: #ffffff;
  background: #11A84E;
}

.page-promotions-weekly-cashback__light-bg {
  color: #333333;
  background: #ffffff;
}

.page-promotions-weekly-cashback__medium-bg {
  color: #000000;
  background: #22C768;
}

.page-promotions-weekly-cashback__content-area,
.page-promotions-weekly-cashback__text-block {
  color: #A7D9B8; /* Text Secondary - on dark background */
}

.page-promotions-weekly-cashback p,
.page-promotions-weekly-cashback li {
  color: #A7D9B8;
}

.page-promotions-weekly-cashback__card {
  background: #11271B; /* Card B G */
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-promotions-weekly-cashback__dark-section {
  background: #0A4B2C;
  color: #ffffff;
}

.page-promotions-weekly-cashback__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions-weekly-cashback__btn-secondary {
  background: #0A4B2C;
  color: #11A84E;
  border: 2px solid #11A84E;
}