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

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

.page-promotions__hero {
  background: linear-gradient(135deg, #1A237E, #FFD700);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

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

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

.page-promotions__section:nth-of-type(odd) {
  background-color: #1A237E; /* Main brand color for contrast */
}

.page-promotions__section:nth-of-type(even) {
  background-color: #0f0f0f; /* Slightly darker background */
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for titles */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promotions__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

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

.page-promotions__card {
  background-color: #1A237E; /* Main brand color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #3f479a; /* Lighter shade of main color */
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-promotions__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #FFD700; /* Accent border */
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Accent color for card titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A237E; /* Main brand color */
  border: 2px solid #FFD700;
}

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

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E; /* Main brand color */
  transform: translateY(-2px);
}

.page-promotions__btn--center {
  margin-top: 30px;
}

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

.page-promotions__list li {
  background-color: #2a338d; /* Slightly lighter main color */
  margin-bottom: 15px;
  padding: 18px 25px;
  border-radius: 10px;
  font-size: 1.1em;
  color: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-promotions__icon {
  margin-right: 15px;
  font-size: 1.5em;
  color: #FFD700;
}

/* Icon styles (Font Awesome or similar would be used) */
.page-promotions__icon--star::before { content: '⭐'; } /* Placeholder */
.page-promotions__icon--gift::before { content: '🎁'; } /* Placeholder */
.page-promotions__icon--user::before { content: '👤'; } /* Placeholder */
.page-promotions__icon--money::before { content: '💰'; } /* Placeholder */
.page-promotions__icon--exclusive::before { content: '💎'; } /* Placeholder */
.page-promotions__icon--apple::before { content: '🍎'; } /* Placeholder */
.page-promotions__icon--android::before { content: '🤖'; } /* Placeholder */

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

.page-promotions__step-card {
  background-color: #1A237E; /* Main brand color */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  position: relative;
  text-align: center;
  border: 1px solid #3f479a;
}

.page-promotions__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Accent color */
  color: #1A237E;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__step-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-promotions__app-promo {
  background-color: #1A237E;
  padding: 80px 0;
}

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

.page-promotions__btn--app {
  padding: 15px 30px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #FFD700;
  color: #FFD700;
  background-color: transparent;
}

.page-promotions__btn--app:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-promotions__app-mockup {
  max-width: 600px;
  width: 100%;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  border: 3px solid #FFD700;
}

.page-promotions__faq-item {
  background-color: #2a338d; /* Slightly lighter main color */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #c0c0c0;
}

.page-promotions__cta-final {
  background: linear-gradient(90deg, #1A237E, #FFD700);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-promotions__cta-content {
  max-width: 900px;
}

.page-promotions__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

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

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

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

  .page-promotions__card {
    padding: 25px;
  }

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

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

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

  .page-promotions__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

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

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

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

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

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

  .page-promotions__btn {
    font-size: 0.95em;
    padding: 12px 20px;
  }

  .page-promotions__list li {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-promotions__step-title {
    font-size: 1.3em;
  }

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