.page-promotions {
  color: #f0f0f0; /* Default light text for dark-bg body */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--dark-bg); /* Ensure consistency with shared.css */
}

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

.page-promotions__dark-bg {
  background-color: #1A237E;
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__medium-bg {
  background-color: #FFC107;
  color: #333333;
}

.page-promotions__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px;
}

.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;
  opacity: 0.3;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  margin: 0 10px;
}

.page-promotions__btn-primary {
  background-color: #FFC107;
  color: #1A237E;
  border-color: #FFC107;
}

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

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #FFC107;
  border-color: #FFC107;
}

.page-promotions__btn-secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
}

.page-promotions__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: inherit; /* Inherit color from parent section */
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: inherit;
}

.page-promotions__overview-section,
.page-promotions__details-section,
.page-promotions__cta-section,
.page-promotions__faq-section,
.page-promotions__app-download-section,
.page-promotions__why-choose-us {
  padding: 80px 0;
}

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

.page-promotions__card {
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #1A237E;
}

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

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

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

.page-promotions__promotion-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
}

.page-promotions__promotion-item--reversed {
  flex-direction: row-reverse;
}

.page-promotions__promotion-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-promotions__promotion-content {
  flex: 1;
  max-width: 50%;
}

.page-promotions__promotion-title {
  font-size: 2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFC107;
}

.page-promotions__promotion-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-promotions__promotion-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promotions__promotion-features li {
  font-size: 1em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #f0f0f0;
}

.page-promotions__promotion-features li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FFC107;
}

.page-promotions__feature-link {
  color: inherit; /* Inherit from li */
  text-decoration: none;
}

.page-promotions__feature-link:hover {
  text-decoration: underline;
}

.page-promotions__cta-section {
  text-align: center;
}

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

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

.page-promotions__faq-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #e9ecef;
  color: #1A237E;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #dee2e6;
}

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

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large */
  padding: 20px 30px;
}

.page-promotions__faq-answer p {
  margin: 0;
  color: #333333;
}

.page-promotions__app-download-section {
  text-align: center;
  padding: 80px 0;
}

.page-promotions__app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-promotions__app-text {
  max-width: 600px;
  text-align: left;
}

.page-promotions__app-image-wrapper {
  flex-shrink: 0;
}

.page-promotions__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions__why-choose-us {
  padding: 80px 0;
}

.page-promotions__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promotions__advantages-list li {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  position: relative;
  padding-left: 55px;
  color: #333333;
}

.page-promotions__advantages-list li strong {
  color: #1A237E;
}

.page-promotions__advantages-list li::before {
  content: '✨';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

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

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

  .page-promotions__promotion-item {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions__promotion-item--reversed {
    flex-direction: column;
  }

  .page-promotions__promotion-image,
  .page-promotions__promotion-content {
    max-width: 100%;
  }

  .page-promotions__promotion-features {
    text-align: left;
  }

  .page-promotions__app-content {
    flex-direction: column;
  }

  .page-promotions__app-text {
    text-align: center;
  }
}

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

  .page-promotions__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }

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

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions__overview-section,
  .page-promotions__details-section,
  .page-promotions__cta-section,
  .page-promotions__faq-section,
  .page-promotions__app-download-section,
  .page-promotions__why-choose-us {
    padding: 40px 0;
  }

  .page-promotions__card {
    padding: 20px;
  }

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

  .page-promotions__promotion-item {
    padding: 20px;
  }

  .page-promotions__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

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

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

  .page-promotions__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__app-image-wrapper,
  .page-promotions__promotion-item,
  .page-promotions__app-content,
  .page-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}