.page-resources-latest-promotions {
  --primary-color: #0A1931;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
}

.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;
  background-color: var(--primary-color);
  padding-top: var(--header-offset, 120px);
  padding-bottom: 80px;
  text-align: center;
  color: var(--text-light);
}

.page-resources-latest-promotions__main-title {
  font-size: 3.2em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-latest-promotions__intro-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-resources-latest-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-latest-promotions__btn-primary,
.page-resources-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-latest-promotions__btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-latest-promotions__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-latest-promotions__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-latest-promotions__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-resources-latest-promotions__promotions-overview,
.page-resources-latest-promotions__terms-conditions,
.page-resources-latest-promotions__faq-section {
  background-color: var(--primary-color);
  padding: 80px 0;
  color: var(--text-light);
}

.page-resources-latest-promotions__how-to-claim,
.page-resources-latest-promotions__video-section,
.page-resources-latest-promotions__cta-bottom {
  background-color: #f0f2f5;
  padding: 80px 0;
  color: var(--text-dark);
}

.page-resources-latest-promotions__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-resources-latest-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.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-color: #ffffff;
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-resources-latest-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin: 0 20px 15px;
  flex-grow: 1;
}

.page-resources-latest-promotions__card-text {
  font-size: 1em;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-resources-latest-promotions__card-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

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

.page-resources-latest-promotions__step-item {
  background-color: #ffffff;
  color: var(--text-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-latest-promotions__step-icon {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-latest-promotions__step-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-latest-promotions__terms-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-resources-latest-promotions__terms-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
}

.page-resources-latest-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-bottom: 40px;
  border-radius: 10px;
}

.page-resources-latest-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.page-resources-latest-promotions__video-cta {
  margin-top: 20px;
}

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

.page-resources-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-resources-latest-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-latest-promotions__faq-title {
  font-size: 1.2em;
  color: var(--secondary-color);
  margin: 0;
}

.page-resources-latest-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--secondary-color);
  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: var(--text-light);
}

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

.page-resources-latest-promotions__faq-answer p {
  margin: 0;
}

.page-resources-latest-promotions__cta-bottom {
  text-align: center;
  color: var(--text-dark);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-latest-promotions__main-title {
    font-size: 2.8em;
  }

  .page-resources-latest-promotions__section-title {
    font-size: 2em;
  }

  .page-resources-latest-promotions__intro-description,
  .page-resources-latest-promotions__section-description {
    font-size: 1.1em;
  }
}

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

  .page-resources-latest-promotions__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-resources-latest-promotions__intro-description {
    font-size: 1em;
  }

  .page-resources-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-latest-promotions__btn-primary,
  .page-resources-latest-promotions__btn-secondary,
  .page-resources-latest-promotions a[class*="button"],
  .page-resources-latest-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-latest-promotions__promo-grid,
  .page-resources-latest-promotions__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-latest-promotions__promo-card {
    margin-bottom: 20px;
  }

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

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

  .page-resources-latest-promotions__card-image {
    height: 200px;
  }

  .page-resources-latest-promotions__video-wrapper {
    padding-bottom: 56.25% !important; /* 16:9 Aspect Ratio */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-latest-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-resources-latest-promotions__section,
  .page-resources-latest-promotions__card,
  .page-resources-latest-promotions__container,
  .page-resources-latest-promotions__video-section,
  .page-resources-latest-promotions__video-container,
  .page-resources-latest-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-resources-latest-promotions__faq-question,
  .page-resources-latest-promotions__faq-answer {
    padding: 15px !important;
  }

  .page-resources-latest-promotions__faq-title {
    font-size: 1.1em;
  }
}