.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  color: #1F2D3D;
  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;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  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: #1F2D3D;
  text-align: center;
  margin: 60px 0 40px 0;
  padding: 0 20px;
}

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

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
  object-fit: cover;
}

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

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

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 0.95em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.page-promotions__terms-section,
.page-promotions__faq-section {
  padding: 40px 20px 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions__terms-content,
.page-promotions__faq-items {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 30px;
  line-height: 1.7;
  color: #1F2D3D;
}

.page-promotions__terms-content p {
  margin-bottom: 20px;
}

.page-promotions__terms-content ul {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

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

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

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

.page-promotions__faq-item {
  border-bottom: 1px solid #D6E2FF;
  padding: 20px 0;
}

.page-promotions__faq-item:last-child {
  border-bottom: none;
}

.page-promotions__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px;
    padding-bottom: 20px;
  }

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

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

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

  .page-promotions__hero-description {
    font-size: 0.95em;
    margin-bottom: 20px;
  }

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

  .page-promotions__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin: 40px 0 30px 0;
  }

  .page-promotions__promotion-list-section {
    padding: 20px 15px;
  }

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

  .page-promotions__promotion-card {
    padding: 20px;
  }

  .page-promotions__card-image {
    max-width: 100%;
    height: auto;
  }

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

  .page-promotions__card-description {
    font-size: 0.9em;
  }

  .page-promotions__card-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promotions__terms-section,
  .page-promotions__faq-section {
    padding: 20px 15px 40px 15px;
  }

  .page-promotions__terms-content,
  .page-promotions__faq-items {
    padding: 20px;
  }

  .page-promotions__faq-question {
    font-size: 1.1em;
  }

  .page-promotions__faq-answer {
    font-size: 0.95em;
  }

  /* Ensure all images within content area are responsive and don't overflow */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
  }
}