.page-resources-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for main text on dark background */
  background-color: #0A2463; /* Main primary color */
}

.page-resources-latest-promotions__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-latest-promotions__hero {
  background: linear-gradient(135deg, #0A2463, #1A3E8A); /* Darker blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  border-bottom: 5px solid #FFD700;
}

.page-resources-latest-promotions__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-resources-latest-promotions__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-resources-latest-promotions__button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-promotions__button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-latest-promotions__button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-latest-promotions__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-latest-promotions__content-section {
  padding: 50px 0;
  background-color: #0A2463;
}

.page-resources-latest-promotions__article-content {
  max-width: 800px;
  background-color: #1A3E8A; /* Slightly lighter blue for article background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  line-height: 1.7;
  font-size: 1.05em;
}

.page-resources-latest-promotions__article-content p {
  margin-bottom: 20px;
  color: #E0E0E0; /* Light gray for paragraph text */
}

.page-resources-latest-promotions__heading {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-latest-promotions__sub-heading {
  font-size: 1.6em;
  color: #F8F8F8; /* White for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-latest-promotions__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-latest-promotions__list li {
  margin-bottom: 10px;
}

.page-resources-latest-promotions__image-centered {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-resources-latest-promotions__faq-item {
  background-color: #0A2463; /* Dark blue for FAQ items */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-promotions__faq-item h3 {
  color: #FFD700; /* Gold for FAQ questions */
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3em;
}

.page-resources-latest-promotions__faq-item p {
  color: #E0E0E0; /* Light gray for FAQ answers */
  margin-bottom: 0;
}

.page-resources-latest-promotions__conclusion-text {
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  color: #F8F8F8;
}

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

.page-resources-latest-promotions__back-link {
  color: #FFD700; /* Gold for back link */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-latest-promotions__back-link:hover {
  color: #F8F8F8; /* White on hover */
}

@media (max-width: 768px) {
  .page-resources-latest-promotions__title {
    font-size: 2.5em;
  }

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

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

  .page-resources-latest-promotions__sub-heading {
    font-size: 1.4em;
  }

  .page-resources-latest-promotions__article-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-latest-promotions__title {
    font-size: 2em;
  }

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

  .page-resources-latest-promotions__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-latest-promotions__button--large {
      padding: 15px 25px;
      font-size: 1.1em;
  }

  .page-resources-latest-promotions__heading {
    font-size: 1.6em;
  }

  .page-resources-latest-promotions__sub-heading {
    font-size: 1.2em;
  }

  .page-resources-latest-promotions__article-content {
    padding: 15px;
  }
}