.page-promotions {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
  min-height: 200px; /* Ensure minimum size */
}

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

.page-promotions__hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFF1E8;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, #F3C54D, #FFB04A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF1E8;
}

.page-promotions__hero-cta,
.page-promotions__promo-cta,
.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 150px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-promotions__hero-cta:hover,
.page-promotions__promo-cta:hover,
.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(243, 197, 77, 0.4);
}

.page-promotions__overview-section,
.page-promotions__list-section,
.page-promotions__cta-section,
.page-promotions__faq-section {
  padding: 60px 0;
}

.page-promotions__overview-title,
.page-promotions__list-title,
.page-promotions__cta-title,
.page-promotions__faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF1E8;
  background: linear-gradient(90deg, #F3C54D, #FFB04A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-promotions__overview-text {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #FFF1E8;
}

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

.page-promotions__feature-item {
  background-color: #2A1212;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-heading {
  font-size: 1.5rem;
  color: #F3C54D;
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  font-size: 1rem;
  color: #FFF1E8;
}

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

.page-promotions__promo-card {
  background-color: #2A1212;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #6A1E1E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-image {
  width: 100%;
  height: 225px;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 200px; /* Ensure minimum size */
}

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

.page-promotions__promo-heading {
  font-size: 1.4rem;
  color: #F3C54D;
  margin-bottom: 15px;
}

.page-promotions__promo-description {
  font-size: 0.95rem;
  color: #FFF1E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__cta-section {
  background-color: #7E0D0D;
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-title {
  color: #FFF1E8;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #FFF1E8;
}

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  padding: 20px;
}

.page-promotions__faq-question {
  font-size: 1.3rem;
  color: #F3C54D;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.is-active .page-promotions__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #FFF1E8;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #6A1E1E;
  margin-top: 10px;
}

.page-promotions__faq-item.is-active .page-promotions__faq-answer {
  display: block;
}

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

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

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

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

  .page-promotions__overview-section,
  .page-promotions__list-section,
  .page-promotions__cta-section,
  .page-promotions__faq-section {
    padding: 40px 0;
  }

  .page-promotions__overview-title,
  .page-promotions__list-title,
  .page-promotions__cta-title,
  .page-promotions__faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-promotions__promo-image,
  .page-promotions__promo-card img {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }

  .page-promotions__cta-title {
    font-size: 2.2rem;
  }

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

  .page-promotions__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-promotions__hero-content {
    padding: 20px 10px;
  }

  .page-promotions__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-promotions__hero-cta,
  .page-promotions__cta-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .page-promotions__overview-title,
  .page-promotions__list-title,
  .page-promotions__cta-title,
  .page-promotions__faq-title {
    font-size: 1.8rem;
  }

  .page-promotions__features-grid,
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

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

  .page-promotions__cta-title {
    font-size: 1.8rem;
  }

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

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

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

/* Global image responsiveness for content area to prevent overflow */
@media (max-width: 768px) {
  .page-promotions__hero-image,
  .page-promotions__promo-image,
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-promotions {
    overflow-x: hidden;
  }
}