.page-promotions {
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  min-height: 500px;
  overflow: hidden;
  background-color: #017439; /* Primary brand color */
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Slightly transparent to let content stand out */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

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

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promotions__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Dark background for content sections */
  color: #ffffff;
}

.page-promotions__introduction-section {
  background-color: #121212; /* Match body background */
  color: #ffffff;
}

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

.page-promotions__heading {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-promotions__sub-heading {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #017439;
  text-align: center;
}

.page-promotions__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions__text-block a {
  color: #017439;
  text-decoration: underline;
}

.page-promotions__text-block a:hover {
  color: #02a050;
}

.page-promotions__highlight {
  color: #FFFF00; /* Custom color for highlights */
  font-weight: bold;
}

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

.page-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #ffffff;
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
  padding: 0 20px;
}

.page-promotions__card-title a {
  color: #017439;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  color: #02a050;
  text-decoration: underline;
}

.page-promotions__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__promo-card .page-promotions__btn-primary,
.page-promotions__promo-card .page-promotions__btn-secondary {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-promotions__list-item strong {
  color: #017439;
  font-size: 1.2em;
}

.page-promotions__list-item a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-promotions__list-item a:hover {
  color: #02a050;
}

.page-promotions__faq-section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  background-color: #017439; /* Primary brand color for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 15px 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-promotions__faq-answer p {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-promotions__faq-answer a {
  color: #FFFF00;
  text-decoration: underline;
}

.page-promotions__faq-answer a:hover {
  color: #02a050;
}

.page-promotions__cta-final {
  background-color: #121212; /* Match body background */
  padding: 80px 20px;
}

.page-promotions__cta-final .page-promotions__container {
  background-color: #017439; /* Primary brand color for final CTA */
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-final .page-promotions__heading {
  color: #ffffff;
  margin-bottom: 30px;
}

.page-promotions__cta-final .page-promotions__heading::after {
  background-color: #ffffff;
}

.page-promotions__cta-final .page-promotions__text-block {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promotions__cta-final .page-promotions__text-block a {
  color: #FFFF00;
}

.page-promotions__cta-final .page-promotions__text-block a:hover {
  color: #02a050;
}

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

.page-promotions__btn-primary,
.page-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;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background-color: #C30808; /* Custom color for primary action */
  color: #FFFF00; /* Custom color for font */
  border: 2px solid #C30808;
}

.page-promotions__btn-primary:hover {
  background-color: #e00a0a;
  border-color: #e00a0a;
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
}

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

  .page-promotions__heading {
    font-size: 2em;
  }

  .page-promotions__promo-card {
    padding-bottom: 20px;
  }

  .page-promotions__promo-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    min-height: 400px;
  }

  .page-promotions__hero-title {
    font-size: 2em;
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__hero-cta,
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important; /* Full width buttons on mobile */
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section {
    padding: 40px 15px;
  }

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

  .page-promotions__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__sub-heading {
    font-size: 1.5em;
  }

  .page-promotions__text-block,
  .page-promotions__list-item,
  .page-promotions__card-description,
  .page-promotions__faq-answer p {
    font-size: 0.95em;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-image {
    height: 160px;
  }

  .page-promotions__promo-card {
    padding-bottom: 15px;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-promotions__cta-final {
    padding: 60px 15px;
  }

  .page-promotions__cta-final .page-promotions__container {
    padding: 30px;
  }

  .page-promotions__cta-final .page-promotions__text-block {
    font-size: 1em;
    margin-bottom: 30px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }

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

  .page-promotions__faq-question {
    font-size: 1em;
  }
}