.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A244A 0%, #0A244A 70%, #FFD700 100%);
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  z-index: 10;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

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

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

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A244A;
}

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

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

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

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

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

.page-promotions__hero-image-container {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.page-promotions__hero-image {
  max-width: 60%;
  height: auto;
  object-fit: contain;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #0A244A;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-subtitle {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__text-content {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 15px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__text-content a {
  color: #0A244A;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__text-content a:hover {
  color: #FFD700;
}

.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: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__promo-card-title {
  font-size: 1.8em;
  color: #0A244A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promo-card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__step-list li {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 25px;
  position: relative;
  counter-increment: step-counter;
  padding-left: 80px;
}

.page-promotions__step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 25px;
  background-color: #FFD700;
  color: #0A244A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: #0A244A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-list p {
  color: #555555;
  font-size: 1em;
}

.page-promotions__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-question {
  font-size: 1.4em;
  color: #0A244A;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-promotions__faq-question.active + .page-promotions__faq-answer {
  display: block;
}

.page-promotions__cta .page-promotions__section-title {
  color: #0A244A;
}

.page-promotions__cta .page-promotions__text-content {
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__hero-image {
    max-width: 80%;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-card-title {
    font-size: 1.6em;
  }
  .page-promotions__step-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__hero-image {
    max-width: 100%;
    opacity: 0.1;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-subtitle {
    font-size: 1em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__step-list li {
    padding: 25px;
    padding-left: 65px;
  }
  .page-promotions__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 20px;
    top: 20px;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__text-content, .page-promotions__promo-card-description, .page-promotions__step-list p, .page-promotions__faq-answer {
    font-size: 0.95em;
  }
}