body {
  background-color: #F4F7FB;
  padding-top: var(--header-offset);
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  background-color: #F4F7FB;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure it can go full width but respect max-width */
  margin-bottom: 20px;
}

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

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

.page-promotions__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  color: #1F2D3D;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-promotions__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #1F2D3D;
  line-height: 1.6;
  margin-bottom: 30px;
}

.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;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

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

.page-promotions__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #F4F7FB;
}

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

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 200px; /* Minimum height to ensure content is visible */
}

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

.page-promotions__card-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency, will be object-fit */
  object-fit: cover;
  display: block;
  min-height: 200px; /* Ensure image is not too small */
}

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

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

.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-description {
  font-size: 0.95em;
  color: #1F2D3D;
  line-height: 1.5;
  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;
  font-size: 0.9em;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

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

.page-promotions__why-choose-us .page-promotions__content-wrapper {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

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

.page-promotions__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.page-promotions__feature-item {
  font-size: 1em;
  color: #1F2D3D;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
}

.page-promotions__feature-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions__faq-list {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px dashed #D6E2FF;
}

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

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

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

.page-promotions__cta-bottom-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  padding: 60px 20px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 12px;
  max-width: 1200px;
  margin: 40px auto 60px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-bottom-title {
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__cta-bottom-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Re-apply gradient for consistency */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

  .page-promotions__hero-content {
    padding: 0 15px;
  }

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

  .page-promotions__hero-description {
    font-size: clamp(0.9em, 2.5vw, 1em);
  }

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

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

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

  .page-promotions__promotion-card {
    min-height: auto;
  }

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

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

  .page-promotions__why-choose-us .page-promotions__content-wrapper {
    padding: 30px;
  }

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

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

  .page-promotions__faq-list {
    padding: 20px;
  }

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

  .page-promotions__cta-bottom-section {
    padding: 40px 15px;
    margin: 30px auto 40px;
  }

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

  .page-promotions__cta-bottom-description {
    font-size: 1em;
  }

  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

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

/* Ensure content area images are not smaller than 200px (desktop) */
.page-promotions__promotion-card img,
.page-promotions__hero-image {
  min-width: 200px; /* Applies to desktop as well, as per global rule */
  min-height: 200px;
}