.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0F0920; /* Darker background for overall page content */
  line-height: 1.6;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #1A0D3B 0%, #3A1E6B 100%); /* Dark gradient for hero */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  color: #CCCCCC;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-promotions__btn {
  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, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold for primary action */
  color: #1A0D3B; /* Dark text on gold */
}

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

.page-promotions__btn--secondary {
  background-color: #3A1E6B; /* Darker purple for secondary action */
  color: #FFD700; /* Gold text on dark purple */
  border: 2px solid #FFD700;
}

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

.page-promotions__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions__hero .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__intro, .page-promotions__featured, .page-promotions__list, .page-promotions__guide, .page-promotions__faq, .page-promotions__cta-bottom {
  padding: 60px 0;
  background-color: #1A0D3B; /* Main background for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__text-content {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-promotions__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-promotions__feature-list li {
  background-color: #2A1650; /* Slightly lighter dark for list items */
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
  font-weight: bold;
}

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

.page-promotions__card {
  background-color: #2A1650; /* Card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for card titles */
  margin: 0 20px 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #CCCCCC;
  margin: 0 20px 25px;
  flex-grow: 1;
}

.page-promotions__card .page-promotions__btn {
  margin-top: auto;
  align-self: center;
  width: fit-content;
  background-color: #FFD700;
  color: #1A0D3B;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions__card .page-promotions__btn:hover {
  background-color: #E6C200;
}

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

.page-promotions__list-item {
  background-color: #2A1650;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__list-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__list-item-title a {
  color: #FFD700;
  text-decoration: none;
}

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

.page-promotions__list-item-description {
  font-size: 0.95em;
  color: #CCCCCC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A0D3B;
  align-self: flex-start;
}

.page-promotions__btn--small:hover {
  background-color: #E6C200;
}

.page-promotions__steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions__step-item {
  flex: 1;
  min-width: 280px;
  background-color: #2A1650;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #1A0D3B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-promotions__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-promotions__guide-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions__guide-image {
  width: 80%;
  max-width: 800px;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__faq-item {
  background-color: #2A1650;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  margin-left: 10px;
}

.page-promotions__faq-question.active::after {
  content: '-';
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promotions__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-promotions__cta-bottom {
  text-align: center;
  padding-bottom: 80px;
}

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

.page-promotions__cta-image {
  width: 90%;
  max-width: 1000px;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

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

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

  .page-promotions__grid, .page-promotions__list-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-promotions__steps {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__step-item {
    width: 90%;
  }
}

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

  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }

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

  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__intro, .page-promotions__featured, .page-promotions__list, .page-promotions__guide, .page-promotions__faq, .page-promotions__cta-bottom {
    padding: 40px 0;
  }

  .page-promotions__card-title {
    font-size: 1.4em;
  }

  .page-promotions__list-item-title {
    font-size: 1.2em;
  }

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

  .page-promotions__btn--large {
    width: 80%;
    max-width: 300px;
  }
}

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

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

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

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

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

  .page-promotions__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}