.page-promotions {
  font-family: Arial, sans-serif;
  color: #404040;
  background-color: #F3F3F3;
}

.page-promotions__hero-section {
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body */
  text-align: center;
  background-color: #FFFFFF; /* White background for hero section */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  margin-bottom: 20px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Ensure images are not small icons */
  min-height: 200px;
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Responsive font size for H1 */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #025BE8; /* Blue for emphasis */
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #404040;
}

.page-promotions__section {
  padding: 40px 20px;
  margin-bottom: 30px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promotions__section:nth-of-type(even) {
  background-color: #F9F9F9; /* Slightly different background for alternating sections */
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  color: #025BE8;
  text-align: center;
  margin-bottom: 30px;
}

.page-promotions__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.page-promotions__text-content {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #404040;
}

.page-promotions__text-content a {
  color: #025BE8;
  text-decoration: underline;
}

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

.page-promotions__feature-card,
.page-promotions__promo-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__feature-card img,
.page-promotions__promo-card img,
.page-promotions__vip-image,
.page-promotions__app-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce minimum size for all content images */
  min-height: 200px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #025BE8;
  margin-bottom: 10px;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #404040;
  margin-bottom: 20px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-promotions__cta-button--register {
  background-color: #1266EC;
  color: #FFFFFF;
}

.page-promotions__cta-button--register:hover {
  background-color: #025BE8;
  transform: translateY(-2px);
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: #025BE8;
  color: #FFFFFF;
}

.page-promotions__cta-button--small:hover {
  background-color: #1266EC;
  transform: translateY(-1px);
}

.page-promotions__cta-button--secondary {
  background-color: #E5EEFD;
  color: #025BE8;
  border: 1px solid #025BE8;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #025BE8;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-promotions__cta-button--download {
  background-color: #025BE8;
  color: #FFFFFF;
}

.page-promotions__cta-button--download:hover {
  background-color: #1266EC;
  transform: translateY(-2px);
}

.page-promotions__cta-button--large {
  padding: 15px 35px;
  font-size: 1.2rem;
  background-color: #1266EC;
  color: #FFFFFF;
}

.page-promotions__cta-button--large:hover {
  background-color: #025BE8;
  transform: translateY(-3px);
}

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

.page-promotions__vip-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.page-promotions__vip-benefits li {
  background-color: #F9F9F9;
  border-left: 4px solid #025BE8;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: #404040;
  font-size: 1rem;
}

.page-promotions__vip-benefits li strong {
  color: #025BE8;
}

.page-promotions__steps-list {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 25px;
  text-align: left;
  color: #404040;
}

.page-promotions__steps-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-promotions__steps-list li strong {
  color: #025BE8;
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.75rem, 7vw, 2rem);
  }

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

  .page-promotions__section {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
    margin-bottom: 20px;
  }

  .page-promotions__content-wrapper {
    padding: 0 10px;
  }

  .page-promotions__cta-button {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-card img,
  .page-promotions__promo-card img,
  .page-promotions__vip-image,
  .page-promotions__app-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section {
    padding: 30px 10px;
    padding-top: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 1.8rem);
  }

  .page-promotions__hero-description {
    font-size: 0.9rem;
  }

  .page-promotions__section {
    padding: 20px 10px;
  }

  .page-promotions__text-content,
  .page-promotions__card-description,
  .page-promotions__vip-benefits li,
  .page-promotions__steps-list li {
    font-size: 0.9rem;
  }
}