.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

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

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

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

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

.page-promotions__hero-description {
  font-size: clamp(1em, 2vw, 1.15em);
  color: #1F2D3D;
  margin-bottom: 30px;
}

.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: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions__cta-button:hover {
  opacity: 0.9;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

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

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.2em);
  font-weight: 700;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 30px;
}

.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: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-promotions__promotion-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__promotion-card-title a {
  color: #2F6BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__promotion-card-title a:hover {
  color: #6FA3FF;
}

.page-promotions__promotion-card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__promotion-card-date {
  font-size: 0.85em;
  color: #6FA3FF;
  margin-bottom: 15px;
  display: block;
}

.page-promotions__promotion-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.9em;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.page-promotions__promotion-card-button:hover {
  opacity: 0.9;
}

.page-promotions__why-choose-us-section {
  background-color: #FFFFFF;
  max-width: 1390px;
  margin: 40px auto;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__feature-item {
  padding: 20px;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  background-color: #F4F7FB;
}

.page-promotions__feature-title {
  font-size: 1.25em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-promotions__feature-description {
  font-size: 0.95em;
  color: #1F2D3D;
}

.page-promotions__faq-section {
  max-width: 1390px;
  margin: 40px auto;
  padding: 20px;
  margin-bottom: 60px;
}

.page-promotions__faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

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

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

.page-promotions__faq-link {
  display: block;
  text-align: center;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 15px;
    margin-bottom: 30px;
  }

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

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

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

  .page-promotions__section-title {
    font-size: clamp(1.6em, 4vw, 2em);
    margin-bottom: 25px;
  }

  .page-promotions__promotions-list-section,
  .page-promotions__why-choose-us-section,
  .page-promotions__faq-section {
    padding: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

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

  .page-promotions__promotion-card-image {
    height: 200px;
  }

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

  .page-promotions__promotion-card-description,
  .page-promotions__promotion-card-date {
    font-size: 0.9em;
  }

  .page-promotions__promotion-card-button {
    font-size: 0.85em;
    padding: 8px 15px;
  }

  /* Ensure all content area images are responsive and do not overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }

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

  .page-promotions__feature-description,
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
}

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

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

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

  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.85em;
  }

  .page-promotions__section-title {
    font-size: clamp(1.4em, 5vw, 1.8em);
  }

  .page-promotions__promotions-list-section,
  .page-promotions__why-choose-us-section,
  .page-promotions__faq-section {
    padding: 10px;
  }

  .page-promotions__promotion-card-image {
    height: 180px;
  }

  .page-promotions__promotion-card-title {
    font-size: 1.1em;
  }

  .page-promotions__promotion-card-description,
  .page-promotions__promotion-card-date {
    font-size: 0.85em;
  }

  .page-promotions__promotion-card-button {
    font-size: 0.8em;
    padding: 7px 12px;
  }

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