.page-resources-promotions-benefits {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-resources-promotions-benefits__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 60px 20px;
  background-color: #000080; /* Auxiliary color for hero background */
  color: #ffffff;
}

.page-resources-promotions-benefits__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-resources-promotions-benefits__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim the image to make text stand out */
}

.page-resources-promotions-benefits__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-promotions-benefits__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-promotions-benefits__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-promotions-benefits__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text */
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-promotions-benefits__hero-button:hover {
  background-color: #e6c200;
  color: #00005a;
}

.page-resources-promotions-benefits__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
}

.page-resources-promotions-benefits__table-of-contents {
  flex: 0 0 280px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-self: flex-start;
  position: sticky;
  top: calc(var(--header-offset, 120px) + 20px);
  max-height: calc(100vh - var(--header-offset, 120px) - 40px);
  overflow-y: auto;
}

.page-resources-promotions-benefits__toc-title {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-promotions-benefits__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-promotions-benefits__toc-list li {
  margin-bottom: 10px;
}

.page-resources-promotions-benefits__toc-list a {
  text-decoration: none;
  color: #333333;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-promotions-benefits__toc-list a:hover {
  color: #FFD700;
}

.page-resources-promotions-benefits__article {
  flex: 1;
  max-width: 800px; /* Content width control */
}

.page-resources-promotions-benefits__article-heading {
  font-size: 2.2em;
  color: #000080;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.page-resources-promotions-benefits__article-subheading {
  font-size: 1.8em;
  color: #000080;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-promotions-benefits__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-promotions-benefits__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px;
}

.page-resources-promotions-benefits__ordered-list,
.page-resources-promotions-benefits__unordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
  font-size: 1.1em;
}

.page-resources-promotions-benefits__ordered-list li,
.page-resources-promotions-benefits__unordered-list li {
  margin-bottom: 10px;
}

.page-resources-promotions-benefits__article-button {
  display: inline-block;
  background-color: #000080; /* Dark blue button */
  color: #FFD700; /* Gold text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-promotions-benefits__article-button:hover {
  background-color: #00005a;
  color: #ffe033;
}

.page-resources-promotions-benefits__call-to-action {
  background-color: #f0f8ff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-promotions-benefits__call-to-action-title {
  font-size: 2.5em;
  color: #000080;
  margin-bottom: 15px;
}

.page-resources-promotions-benefits__call-to-action-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-promotions-benefits__call-to-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-promotions-benefits__call-to-action-button {
  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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-promotions-benefits__call-to-action-button:first-child {
  background-color: #FFD700;
  color: #000080;
}

.page-resources-promotions-benefits__call-to-action-button:first-child:hover {
  background-color: #e6c200;
  color: #00005a;
}

.page-resources-promotions-benefits__call-to-action-button--secondary {
  background-color: #000080;
  color: #FFD700;
}

.page-resources-promotions-benefits__call-to-action-button--secondary:hover {
  background-color: #00005a;
  color: #ffe033;
}

.page-resources-promotions-benefits__related-resources {
  margin-top: 60px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-resources-promotions-benefits__related-title {
  font-size: 2em;
  color: #000080;
  margin-bottom: 20px;
}

.page-resources-promotions-benefits__related-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-promotions-benefits__related-list li {
  margin-bottom: 10px;
}

.page-resources-promotions-benefits__related-list a {
  text-decoration: none;
  color: #333333;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-promotions-benefits__related-list a:hover {
  color: #FFD700;
}

.page-resources-promotions-benefits__back-link {
  display: inline-block;
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-promotions-benefits__back-link:hover {
  color: #FFD700;
  border-color: #000080;
}

@media (max-width: 1024px) {
  .page-resources-promotions-benefits__content-area {
    flex-direction: column;
  }

  .page-resources-promotions-benefits__table-of-contents {
    position: static;
    width: 100%;
    max-height: none;
    margin-bottom: 40px;
  }

  .page-resources-promotions-benefits__article {
    max-width: 100%;
  }
}

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

  .page-resources-promotions-benefits__hero-description {
    font-size: 1.1em;
  }

  .page-resources-promotions-benefits__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-promotions-benefits__article-heading {
    font-size: 1.8em;
  }

  .page-resources-promotions-benefits__article-subheading {
    font-size: 1.5em;
  }

  .page-resources-promotions-benefits__article-paragraph,
  .page-resources-promotions-benefits__ordered-list,
  .page-resources-promotions-benefits__unordered-list,
  .page-resources-promotions-benefits__related-list a {
    font-size: 1em;
  }

  .page-resources-promotions-benefits__call-to-action-title {
    font-size: 2em;
  }

  .page-resources-promotions-benefits__call-to-action-text {
    font-size: 1.1em;
  }

  .page-resources-promotions-benefits__call-to-action-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-promotions-benefits__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images remain visible on mobile */
    min-height: 200px;
  }

  .page-resources-promotions-benefits__content-area {
    padding: 20px;
  }

  .page-resources-promotions-benefits__hero-section {
    min-height: 400px;
    padding: 40px 15px;
  }

  .page-resources-promotions-benefits__article img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-promotions-benefits {
    overflow-x: hidden;
  }

  .page-resources-promotions-benefits__article-image,
  .page-resources-promotions-benefits__hero-image {
    max-width: 100%;
    height: auto;
  }
}