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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, not --header-offset */
  padding-bottom: 40px;
  background-color: #F4F7FB;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1390px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}

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

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

.page-promotions__main-title {
  color: #000000;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
  /* Using clamp for responsive font size */
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-promotions__description {
  font-size: 1.1rem;
  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;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  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__promotions-list {
  padding: 50px 20px;
  max-width: 1390px;
  margin: 0 auto;
}

.page-promotions__section-title {
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: bold;
}

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

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

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
}

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

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

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

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

.page-promotions__card-date {
  font-size: 0.9rem;
  color: #6FA3FF;
  margin-bottom: 15px;
  display: block;
}

.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: bold;
  font-size: 0.95rem;
  text-align: center;
  transition: background 0.2s ease-in-out;
  margin-top: auto;
}

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

.page-promotions__faq-section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #F4F7FB;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
}

.page-promotions__faq-question {
  color: #1F2D3D;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__faq-answer {
  color: #1F2D3D;
  font-size: 1rem;
  line-height: 1.6;
}

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

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

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

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

  .page-promotions__promotions-list,
  .page-promotions__faq-section {
    padding: 30px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

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

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

  .page-promotions__promo-card img {
    max-width: 100%;
    height: auto;
  }

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

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

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

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

/* Ensure all content area images are at least 200px and responsive on mobile */
@media (max-width: 768px) {
  .page-promotions__hero-image,
  .page-promotions__promo-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }
}

/* Ensure images in content area are not less than 200px (desktop) */
.page-promotions__promo-image {
  min-width: 200px;
  min-height: 200px;
}

/* Specific styles for card images to ensure minimum size and proper scaling */
.page-promotions__promo-card .page-promotions__promo-image {
  width: 100%; /* Occupy full width of card */
  max-height: 300px; /* Cap height to avoid overly tall images */
  object-fit: cover;
}