.page-promotions {
  color: #333333;
  background-color: #F5F7FA;
  padding-top: 10px; /* Small top padding for main content, body handles header offset */
}

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

.page-promotions__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

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

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #E53935;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Responsive H1 font size */
}

.page-promotions__intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.4);
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.6);
}

.page-promotions__promotions-list {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 15px;
}

.page-promotions__section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FF5A4F;
  border-radius: 2px;
}

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

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

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

.page-promotions__card-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3; /* Maintain aspect ratio for card images */
  overflow: hidden;
}

.page-promotions__card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no grayscale */
}

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

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 10px;
}

.page-promotions__card-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  align-self: flex-start;
  transition: background 0.3s ease;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
}

.page-promotions__faq-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 15px;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

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

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

.page-promotions__final-cta-section {
  background-color: #E53935;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-promotions__final-cta-title {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-promotions__final-cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button--large {
  padding: 16px 35px;
  font-size: 1.2rem;
}

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

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

  .page-promotions__intro-text {
    font-size: 1rem;
  }

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

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

  .page-promotions__promotion-card {
    flex-direction: column;
  }

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

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

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

  .page-promotions__final-cta-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-promotions__final-cta-description {
    font-size: 1rem;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  /* Critical: ensure all images are responsive and don't overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .page-promotions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .page-promotions__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}