.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-top: 10px; /* Small top padding for content below header */
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
  min-width: 200px; /* Ensure button is large enough */
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin: 60px auto 40px auto;
  max-width: 900px;
  padding: 0 20px;
}

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

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

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

.page-promotions__card-title a {
  color: #000000; /* Main title color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #2F6BFF; /* Primary blue on hover */
}

.page-promotions__card-description {
  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: 5px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-promotions__terms-faq {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.page-promotions__terms-intro {
  font-size: 1.1em;
  line-height: 1.7;
  color: #1F2D3D;
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 30px;
  color: #1F2D3D;
  font-size: 1em;
  line-height: 1.8;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-promotions__cta-section--bottom {
  padding: 60px 20px 80px 20px;
  background-color: #D6E2FF; /* Using border color for a subtle background */
  text-align: center;
  margin-top: 80px;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

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

  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promotions__hero-description,
  .page-promotions__terms-intro,
  .page-promotions__cta-description {
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin: 40px auto 30px auto;
  }

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

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

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

  .page-promotions__terms-faq {
    margin: 50px auto;
    padding: 0 15px;
  }

  .page-promotions__terms-list {
    padding-left: 20px;
  }

  /* Ensure all images within .page-promotions are responsive */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__cta-button,
  .page-promotions__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
    width: 100%;
    max-width: 250px;
  }
}