.page-resources-990k-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background #f4f4f4 */
  background-color: #f4f4f4;
  line-height: 1.6;
}

.page-resources-990k-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-resources-990k-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #1A202C; /* Dark background for hero */
  color: #ffffff;
}

.page-resources-990k-latest-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-990k-latest-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.page-resources-990k-latest-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-990k-latest-promotions__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-990k-latest-promotions__intro-text {
  font-size: 1.3em;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-990k-latest-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #1A202C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-990k-latest-promotions__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-990k-latest-promotions__cta-button--small {
  padding: 12px 30px;
  font-size: 1em;
  margin-top: 20px;
}

.page-resources-990k-latest-promotions__cta-button--large {
  padding: 22px 55px;
  font-size: 1.4em;
  margin-top: 50px;
}

/* General Section Styling */
.page-resources-990k-latest-promotions__overview-section,
.page-resources-990k-latest-promotions__details-section,
.page-resources-990k-latest-promotions__daily-promo-section,
.page-resources-990k-latest-promotions__cashback-section,
.page-resources-990k-latest-promotions__vip-section,
.page-resources-990k-latest-promotions__how-to-claim-section,
.page-resources-990k-latest-promotions__terms-section,
.page-resources-990k-latest-promotions__faq-section,
.page-resources-990k-latest-promotions__cta-banner {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-990k-latest-promotions__overview-section {
  background-color: #f9f9f9;
}

.page-resources-990k-latest-promotions__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-resources-990k-latest-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* Promo Cards */
.page-resources-990k-latest-promotions__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-990k-latest-promotions__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-990k-latest-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-990k-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  max-width: 100%; /* Ensure image fits */
}

.page-resources-990k-latest-promotions__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-990k-latest-promotions__card-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-resources-990k-latest-promotions__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #1A202C;
  color: #FFD700;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom */
}

.page-resources-990k-latest-promotions__btn-primary:hover {
  background: #333a45;
  color: #ffffff;
}

/* Feature List */
.page-resources-990k-latest-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-resources-990k-latest-promotions__feature-item {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.page-resources-990k-latest-promotions__feature-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-990k-latest-promotions__feature-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

/* Promo Grid */
.page-resources-990k-latest-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-990k-latest-promotions__promo-item {
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-resources-990k-latest-promotions__promo-item-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure image fits */
}

.page-resources-990k-latest-promotions__promo-item-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-990k-latest-promotions__promo-item-text {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

/* Cashback Details */
.page-resources-990k-latest-promotions__cashback-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-990k-latest-promotions__cashback-item {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.page-resources-990k-latest-promotions__cashback-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-990k-latest-promotions__cashback-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

/* VIP Section */
.page-resources-990k-latest-promotions__vip-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-990k-latest-promotions__vip-item {
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-resources-990k-latest-promotions__vip-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure image fits */
}

.page-resources-990k-latest-promotions__vip-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-990k-latest-promotions__vip-text {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
}

/* How to Claim Section */
.page-resources-990k-latest-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-990k-latest-promotions__steps-list li {
  background-color: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-resources-990k-latest-promotions__step-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-990k-latest-promotions__step-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
}

/* Terms Section */
.page-resources-990k-latest-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-990k-latest-promotions__terms-list li {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-resources-990k-latest-promotions__term-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-990k-latest-promotions__term-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
}

/* FAQ Section */
.page-resources-990k-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-resources-990k-latest-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-990k-latest-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-990k-latest-promotions__faq-item.active .page-resources-990k-latest-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-990k-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-990k-latest-promotions__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-990k-latest-promotions__faq-question:active {
  background: #eeeeee;
}

.page-resources-990k-latest-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #1A202C;
  pointer-events: none;
}

.page-resources-990k-latest-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-990k-latest-promotions__faq-item.active .page-resources-990k-latest-promotions__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg); /* Change to X or rotate */
}

/* CTA Banner */
.page-resources-990k-latest-promotions__cta-banner {
  background: linear-gradient(135deg, #1A202C, #333a45);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  border-radius: 12px;
  margin-bottom: 0; /* Last section, no margin-bottom */
}

.page-resources-990k-latest-promotions__banner-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 25px;
  color: #FFD700;
}

.page-resources-990k-latest-promotions__banner-text {
  font-size: 1.4em;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-990k-latest-promotions__main-title {
    font-size: 2.8em;
  }
  .page-resources-990k-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-resources-990k-latest-promotions__banner-title {
    font-size: 2.5em;
  }
  .page-resources-990k-latest-promotions__intro-text,
  .page-resources-990k-latest-promotions__banner-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-990k-latest-promotions__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-990k-latest-promotions__hero-image img,
  .page-resources-990k-latest-promotions__card-image,
  .page-resources-990k-latest-promotions__promo-item-image,
  .page-resources-990k-latest-promotions__vip-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  .page-resources-990k-latest-promotions__container,
  .page-resources-990k-latest-promotions__overview-section,
  .page-resources-990k-latest-promotions__details-section,
  .page-resources-990k-latest-promotions__daily-promo-section,
  .page-resources-990k-latest-promotions__cashback-section,
  .page-resources-990k-latest-promotions__vip-section,
  .page-resources-990k-latest-promotions__how-to-claim-section,
  .page-resources-990k-latest-promotions__terms-section,
  .page-resources-990k-latest-promotions__faq-section,
  .page-resources-990k-latest-promotions__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-990k-latest-promotions__main-title {
    font-size: 2em;
  }

  .page-resources-990k-latest-promotions__intro-text {
    font-size: 1em;
  }

  .page-resources-990k-latest-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-990k-latest-promotions__cta-button--small {
    padding: 10px 20px;
  }

  .page-resources-990k-latest-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2em;
  }

  .page-resources-990k-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-resources-990k-latest-promotions__section-description {
    font-size: 0.95em;
  }

  .page-resources-990k-latest-promotions__promo-cards,
  .page-resources-990k-latest-promotions__feature-list,
  .page-resources-990k-latest-promotions__promo-grid,
  .page-resources-990k-latest-promotions__cashback-details,
  .page-resources-990k-latest-promotions__vip-benefits,
  .page-resources-990k-latest-promotions__steps-list {
    grid-template-columns: 1fr;
  }

  .page-resources-990k-latest-promotions__card,
  .page-resources-990k-latest-promotions__feature-item,
  .page-resources-990k-latest-promotions__promo-item,
  .page-resources-990k-latest-promotions__cashback-item,
  .page-resources-990k-latest-promotions__vip-item,
  .page-resources-990k-latest-promotions__steps-list li,
  .page-resources-990k-latest-promotions__terms-list li {
    padding: 20px;
  }

  .page-resources-990k-latest-promotions__card-title,
  .page-resources-990k-latest-promotions__feature-title,
  .page-resources-990k-latest-promotions__promo-item-title,
  .page-resources-990k-latest-promotions__cashback-title,
  .page-resources-990k-latest-promotions__vip-title,
  .page-resources-990k-latest-promotions__step-title,
  .page-resources-990k-latest-promotions__term-title {
    font-size: 1.3em;
  }

  .page-resources-990k-latest-promotions__faq-question {
    padding: 15px;
  }

  .page-resources-990k-latest-promotions__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-990k-latest-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

  .page-resources-990k-latest-promotions__faq-item.active .page-resources-990k-latest-promotions__faq-answer {
    padding: 15px !important;
  }

  .page-resources-990k-latest-promotions__banner-title {
    font-size: 2em;
  }
}