.page-promotions {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg: #FFFFFF;
  --background-color: #F4F7FB;
  --text-main-color: #1F2D3D;
  --text-black: #000000;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  
  background-color: var(--background-color);
  color: var(--text-main-color);
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--primary-color);
  color: var(--card-bg);
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.8); /* Slightly dim the image for text contrast */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px 60px;
  max-width: 800px;
  margin-top: -100px; /* Pull content up over image slightly for visual flow, but not covering text */
  background-color: rgba(47, 107, 255, 0.8); /* Semi-transparent background for text */
  border-radius: 15px;
  transform: translateY(-50px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--card-bg);
  letter-spacing: -1px;
}

.page-promotions__hero-description {
  font-size: 1.25rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: var(--card-bg);
}

.page-promotions__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--card-bg);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__promotions-list-section {
  padding: 60px 0;
  background-color: var(--background-color);
}

.page-promotions__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text-main-color);
}

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

.page-promotions__promotion-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  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 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-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 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main-color);
  line-height: 1.3;
}

.page-promotions__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-main-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--card-bg);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background-color: #5A92ED; /* Slightly darker secondary on hover */
}

.page-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg);
}

.page-promotions__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  color: var(--text-main-color);
  background-color: #F8FBFD; /* Lighter background for question */
  margin: 0;
  display: block;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #EBF2FA;
}

.page-promotions__faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 25px 20px;
  color: var(--text-main-color);
  display: block; /* Ensure it's visible by default for simplicity, can be toggled with JS */
}

.page-promotions__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--card-bg);
}

.page-promotions__cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 20px auto 40px;
  color: var(--card-bg);
}

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

@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 30px 15px 40px;
    margin-top: -60px;
    transform: translateY(-30px);
  }

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

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

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

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

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

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

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

  .page-promotions__card-button {
    font-size: 0.9rem;
  }

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

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

  .page-promotions__cta-bottom-section {
    padding: 60px 0;
  }

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

  /* Mobile content area images must not overflow */
  .page-promotions__promotions-list-section img,
  .page-promotions__hero-image {
    max-width: 100%;
    height: auto;
  }
  
  /* Ensure no image within .page-promotions is smaller than 200px */
  .page-promotions__promotion-card img {
    min-width: 200px;
    min-height: 200px;
  }
}