.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
}

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

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

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

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-promotions__description {
  font-size: 1.15em;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__grid-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__grid-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 40px;
}

.page-promotions__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

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

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

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

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

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

.page-promotions__card-button:hover {
  opacity: 0.9;
}

.page-promotions__all-promotions-cta {
  margin-top: 40px;
}

.page-promotions__all-promotions-button {
  display: inline-block;
  padding: 15px 35px;
  background: #2F6BFF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-promotions__all-promotions-button:hover {
  background: #6FA3FF;
  transform: translateY(-2px);
}

.page-promotions__info-section {
  background-color: #FFFFFF;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto 60px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-promotions__info-title {
  font-size: 2em;
  font-weight: 700;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-promotions__info-text {
  font-size: 1.05em;
  line-height: 1.7;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto 20px;
}

.page-promotions__terms-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: color 0.2s ease;
}

.page-promotions__terms-link:hover {
  color: #6FA3FF;
}

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

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

  .page-promotions__description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

  .page-promotions__card-image {
    height: 180px; /* Ensure images are not too small */
  }

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

  .page-promotions__card-text {
    font-size: 0.95em;
  }

  .page-promotions__all-promotions-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-promotions__info-text {
    font-size: 0.95em;
  }

  /* Mobile content area image overflow prevention */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}