.page-promotions {
  color: #ffffff; /* Body background is dark (#1a1a2e), so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles --header-offset */
  text-align: center;
  overflow: hidden;
  background-color: #017439;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width on larger screens */
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFF00; /* Use yellow for emphasis, ensures contrast */
}

.page-promotions__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure button adapts to container */
}

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

.page-promotions__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

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

.page-promotions__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
}

.page-promotions__section.page-promotions__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  margin-bottom: 40px;
  font-weight: 700;
  color: #FFFF00; /* Use yellow for emphasis, ensures contrast */
}

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

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

.page-promotions__benefit-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.1); /* Light background for dark body */
  color: #ffffff;
}

.page-promotions__benefit-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFFF00;
}

.page-promotions__benefit-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__promo-card {
  background-color: #ffffff; /* White background for card */
  color: #333333; /* Dark text for white background */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #017439;
}

.page-promotions__card-text {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.page-promotions__step-item {
  background-color: rgba(255, 255, 255, 0.1); /* Light background for dark body */
  color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions__step-number {
  background-color: #C30808; /* Use register color for step number */
  color: #FFFF00; /* Use register font color */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-promotions__step-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFFF00;
}

.page-promotions__step-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-promotions__text-block {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.05em;
  color: #f0f0f0;
  text-align: left;
}

.page-promotions__text-link {
  color: #FFFF00;
  text-decoration: underline;
}

.page-promotions__text-link:hover {
  color: #f0f0f0;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for FAQ item */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15em;
  font-weight: 600;
  color: #FFFF00;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

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

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-promotions__cta-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #C30808; /* Use register color for CTA background */
  color: #FFFF00; /* Use register font color */
}

.page-promotions__cta-section .page-promotions__section-title {
  color: #FFFF00;
}

.page-promotions__cta-section .page-promotions__description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-promotions__cta-section .page-promotions__btn-primary {
  background-color: #017439;
  color: #ffffff;
  border-color: #017439;
}

.page-promotions__cta-section .page-promotions__btn-primary:hover {
  background-color: #005a2e;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-section,
  .page-promotions__section {
    padding: 40px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em);
  }

  .page-promotions__section-title {
    font-size: clamp(1.6em, 4vw, 2.2em);
  }

  .page-promotions__benefits-grid,
  .page-promotions__promo-cards-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  
  .page-promotions__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.6em, 6vw, 2.5em);
  }

  .page-promotions__description {
    font-size: 1em;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    margin-bottom: 10px; /* Space between buttons if stacked */
  }

  .page-promotions__hero-content .page-promotions__btn-primary {
    margin-bottom: 0;
  }

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

  .page-promotions__section-title {
    font-size: clamp(1.5em, 5vw, 2em);
    margin-bottom: 30px;
  }

  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__benefit-item,
  .page-promotions__step-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-image,
  .page-promotions__content-image,
  .page-promotions__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__card-image {
    height: 150px;
  }

  .page-promotions__faq-item summary {
    font-size: 1.05em;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
  }

  .page-promotions__cta-section .page-promotions__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* Ensure images are never too small */
.page-promotions img {
  min-width: 200px;
  min-height: 200px;
}

/* Specific card image height adjustment for better responsiveness if needed */
.page-promotions__card-image {
  height: 200px; /* Default for larger screens */
}