.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-top: 10px; /* Small top padding as per instruction */
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 40px;
  max-width: 1390px;
  margin: 0 auto;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1F2D3D;
  margin-bottom: 15px;
  max-width: 100%;
  /* No fixed font-size, rely on weight, line-height, etc. */
}

.page-promotions__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-promotions__hero-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
  min-width: 160px;
  text-align: center;
}

.page-promotions__button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-promotions__button--secondary {
  background: #6FA3FF;
  box-shadow: 0 4px 15px rgba(111, 163, 255, 0.3);
}

.page-promotions__button--secondary:hover {
  background: #4A8BFF;
  box-shadow: 0 6px 20px rgba(111, 163, 255, 0.4);
}

.page-promotions__section {
  padding: 40px 20px;
  max-width: 1390px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

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

.page-promotions__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #D6E2FF;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Minimum 200px height for card images */
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-promotions__card-title a {
  color: #1F2D3D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #2F6BFF;
}

.page-promotions__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  color: #FFFFFF;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  transition: all 0.3s ease;
  text-align: center;
  margin-top: auto;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-promotions__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__text {
  font-size: 1em;
  line-height: 1.7;
  color: #1F2D3D;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__text a {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-promotions__step-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid #D6E2FF;
}

.page-promotions__step-number {
  font-size: 1.8em;
  font-weight: 700;
  color: #2F6BFF;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #2F6BFF;
  border-radius: 50%;
}

.page-promotions__step-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #1F2D3D;
  margin-top: 0;
  margin-bottom: 8px;
}

.page-promotions__step-description {
  font-size: 0.95em;
  color: #1F2D3D;
  line-height: 1.6;
}

.page-promotions__step-description a {
  color: #2F6BFF;
  text-decoration: underline;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.page-promotions__term-item {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 0.95em;
}

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

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

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 15px 0 30px;
  }

  .page-promotions__main-title {
    font-size: 2.2em; /* Smaller on mobile */
  }

  .page-promotions__description {
    font-size: 1em;
  }

  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions__button {
    width: 100%;
    max-width: 250px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-promotions__card-image {
    max-height: 250px;
  }

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

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .page-promotions__step-number {
    margin-bottom: 10px;
  }

  /* Ensure images do not overflow on mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto; /* !important is not needed if inherited or specific enough */
  }
}

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

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

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

  .page-promotions__card-content {
    padding: 20px;
  }

  .page-promotions__card-button {
    width: 100%;
  }
}