.page-resources-latest-promotions {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Inherited from body, but explicitly set for context */
}

.page-resources-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  box-sizing: border-box;
}

.page-resources-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-latest-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.page-resources-latest-promotions__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-resources-latest-promotions__hero-title {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-latest-promotions__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-latest-promotions__hero-cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-latest-promotions__hero-cta-button:hover {
  background-color: #1a8cc2;
  transform: translateY(-2px);
}

.page-resources-latest-promotions__overview-section,
.page-resources-latest-promotions__types-section,
.page-resources-latest-promotions__claim-guide-section,
.page-resources-latest-promotions__why-choose-section,
.page-resources-latest-promotions__faq-section,
.page-resources-latest-promotions__cta-banner-section {
  padding: 60px 0;
  background-color: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-latest-promotions__overview-section {
  background-color: #121212;
}

.page-resources-latest-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-latest-promotions__text-block {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-latest-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-latest-promotions__promo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-resources-latest-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-resources-latest-promotions__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  padding: 20px 20px 10px;
}

.page-resources-latest-promotions__card-description {
  font-size: 1em;
  color: #f0f0f0;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-resources-latest-promotions__card-button {
  display: block;
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-latest-promotions__card-button:hover {
  background-color: #c96706;
}

.page-resources-latest-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-latest-promotions__step-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-resources-latest-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-latest-promotions__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-resources-latest-promotions__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-resources-latest-promotions__main-cta-button {
  display: inline-block;
  background-color: #EA7C07; /* Login color */
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-latest-promotions__main-cta-button:hover {
  background-color: #c96706;
  transform: translateY(-2px);
}

.page-resources-latest-promotions__why-choose-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-resources-latest-promotions__why-choose-text {
  flex: 1;
  min-width: 300px;
}

.page-resources-latest-promotions__why-choose-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-resources-latest-promotions__why-choose-list li {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-resources-latest-promotions__why-choose-list li::before {
  content: '✓';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-latest-promotions__list-highlight {
  color: #26A9E0;
}

.page-resources-latest-promotions__why-choose-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-resources-latest-promotions__why-choose-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block; /* Ensures no extra space below image */
  margin: 0 auto; /* Center image */
}

.page-resources-latest-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-latest-promotions__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.page-resources-latest-promotions__faq-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-resources-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.2em;
  font-weight: bold;
}

.page-resources-latest-promotions__faq-title {
  margin: 0;
  color: #ffffff;
}

.page-resources-latest-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-resources-latest-promotions__faq-item.active .page-resources-latest-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-latest-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-latest-promotions__faq-item.active .page-resources-latest-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px 20px;
}

.page-resources-latest-promotions__cta-banner-section {
  background-color: #121212;
  padding: 80px 0;
}

.page-resources-latest-promotions__cta-banner-section .page-resources-latest-promotions__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 0;
  min-height: 300px; /* Ensure minimum height for banner */
}

.page-resources-latest-promotions__cta-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-latest-promotions__cta-banner-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 15px;
  max-width: 800px;
}

.page-resources-latest-promotions__cta-banner-title {
  font-size: 2.8em;
  color: #26A9E0;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__cta-banner-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-latest-promotions__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-latest-promotions__btn-primary:hover {
  background-color: #1a8cc2;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-latest-promotions__hero-title {
    font-size: 3em;
  }
  .page-resources-latest-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-resources-latest-promotions__section-title {
    font-size: 2.2em;
  }
  .page-resources-latest-promotions__cta-banner-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-latest-promotions__hero-section {
    height: 450px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }
  .page-resources-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-resources-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-resources-latest-promotions__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-latest-promotions__overview-section,
  .page-resources-latest-promotions__types-section,
  .page-resources-latest-promotions__claim-guide-section,
  .page-resources-latest-promotions__why-choose-section,
  .page-resources-latest-promotions__faq-section,
  .page-resources-latest-promotions__cta-banner-section {
    padding: 40px 0;
  }
  .page-resources-latest-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-latest-promotions__text-block {
    font-size: 0.95em;
  }
  .page-resources-latest-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-latest-promotions__promo-card {
    margin-bottom: 20px;
  }
  .page-resources-latest-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-latest-promotions__why-choose-content {
    flex-direction: column;
  }
  .page-resources-latest-promotions__why-choose-image-wrapper {
    order: -1; /* Image appears above text on mobile */
    margin-bottom: 20px;
  }
  .page-resources-latest-promotions__why-choose-image {
    width: 100%;
    height: auto;
  }
  .page-resources-latest-promotions__main-cta-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1em;
    box-sizing: border-box;
  }
  .page-resources-latest-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-resources-latest-promotions__cta-banner-title {
    font-size: 1.8em;
  }
  .page-resources-latest-promotions__cta-banner-description {
    font-size: 1em;
  }
  .page-resources-latest-promotions__btn-primary {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1em;
    box-sizing: border-box;
  }

  /* Force responsive images, videos, and buttons */
  .page-resources-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-latest-promotions video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-latest-promotions__hero-section,
  .page-resources-latest-promotions__overview-section .page-resources-latest-promotions__container,
  .page-resources-latest-promotions__types-section .page-resources-latest-promotions__container,
  .page-resources-latest-promotions__claim-guide-section .page-resources-latest-promotions__container,
  .page-resources-latest-promotions__why-choose-section .page-resources-latest-promotions__container,
  .page-resources-latest-promotions__faq-section .page-resources-latest-promotions__container,
  .page-resources-latest-promotions__cta-banner-section .page-resources-latest-promotions__container,
  .page-resources-latest-promotions__promo-card,
  .page-resources-latest-promotions__step-card,
  .page-resources-latest-promotions__why-choose-image-wrapper,
  .page-resources-latest-promotions__cta-wrapper,
  .page-resources-latest-promotions__cta-banner-content,
  .page-resources-latest-promotions__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-latest-promotions__hero-cta-button,
  .page-resources-latest-promotions__card-button,
  .page-resources-latest-promotions__main-cta-button,
  .page-resources-latest-promotions__btn-primary {
    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-resources-latest-promotions__hero-section {
    height: 350px;
  }
  .page-resources-latest-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-resources-latest-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-resources-latest-promotions__section-title {
    font-size: 1.5em;
  }
  .page-resources-latest-promotions__cta-banner-title {
    font-size: 1.5em;
  }
  .page-resources-latest-promotions__cta-banner-description {
    font-size: 0.9em;
  }
  .page-resources-latest-promotions__cta-banner-content {
    padding: 20px;
  }
}