.page-promotions {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  min-height: 500px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-promotions__intro-text {
  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: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

.page-promotions__btn-secondary:hover {
  background: #e0f2f7;
}

.page-promotions__content-area,
.page-promotions__benefits-section,
.page-promotions__guide-section,
.page-promotions__faq-section,
.page-promotions__call-to-action {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
  color: #26A9E0; /* Default title color */
}

.page-promotions__section-title--white {
  color: #ffffff;
}

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

.page-promotions__card {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for contrast on dark body */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff; /* Light text for dark background */
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-promotions__card-description {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__benefits-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-promotions__benefits-text {
  flex: 1;
  color: #ffffff;
}

.page-promotions__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  margin-top: 30px;
}

.page-promotions__benefits-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promotions__benefits-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-promotions__guide-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-promotions__guide-list {
  flex: 2;
  list-style: none;
  padding: 0;
  color: #ffffff;
}

.page-promotions__guide-item {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__guide-item strong {
  color: #26A9E0;
}

.page-promotions__guide-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promotions__guide-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative; /* For image positioning */
  padding: 0 20px;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #26A9E0;
  list-style: none;
}

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

.page-promotions__faq-item summary {
  list-style: none;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #ffffff;
}

.page-promotions__faq-answer {
  padding: 0 0 20px 0;
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions__faq-image-wrapper {
  margin-top: 30px;
  text-align: center;
}

.page-promotions__faq-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.page-promotions__call-to-action {
  text-align: center;
  background: rgba(255, 255, 255, 0.05); /* Light background for contrast */
  border-radius: 10px;
  padding: 50px 30px;
  color: #ffffff;
}

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

/* Color contrast specific classes */
.page-promotions__dark-bg {
  background: #1a1a2e; /* Body background color */
  color: #ffffff;
}

.page-promotions__light-bg {
  background: rgba(255, 255, 255, 0.03); /* Slightly lighter transparent background for sections */
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__benefits-wrapper,
  .page-promotions__guide-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__benefits-image-wrapper,
  .page-promotions__guide-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
}

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

  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-content {
    padding: 15px;
  }

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

  .page-promotions__intro-text {
    font-size: 1em;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-bottom: 15px;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__content-area,
  .page-promotions__benefits-section,
  .page-promotions__guide-section,
  .page-promotions__faq-section,
  .page-promotions__call-to-action {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-promotions__card {
    padding: 20px;
  }

  .page-promotions__card-image,
  .page-promotions__benefits-image,
  .page-promotions__guide-image,
  .page-promotions__faq-image,
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__hero-image-wrapper,
  .page-promotions__card,
  .page-promotions__benefits-wrapper,
  .page-promotions__guide-content,
  .page-promotions__faq-list,
  .page-promotions__call-to-action,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container,
  .page-promotions__section,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__faq-item {
    padding: 0 15px;
  }
  .page-promotions__faq-question {
    padding: 15px 0;
  }
  .page-promotions__faq-answer {
    padding: 0 0 15px 0;
  }
}