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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 40px;
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

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

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF1E8;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 176, 74, 0.4);
}

.page-promotions__cta-button--centered {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 250px;
}

.page-promotions__section-title {
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 40px;
  color: #F3C54D;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__featured-promotions,
.page-promotions__how-to-claim,
.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  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.5em;
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95em;
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

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

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

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

.page-promotions__step-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-promotions__step-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 0.9em;
  line-height: 1.5;
  opacity: 0.8;
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions__faq-item h3 {
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  font-size: 1.2em;
  color: #FFF1E8;
  background-color: #2A1212;
  position: relative;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
  color: #F3C54D;
}

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

.page-promotions__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-bottom: 25px;
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF1E8;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-promotions__hero-image {
    margin-bottom: 0;
  }

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

  .page-promotions__hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 10px;
  }

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

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

  .page-promotions__featured-promotions,
  .page-promotions__how-to-claim,
  .page-promotions__faq-section {
    padding: 40px 15px;
  }

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

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

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

  .page-promotions__step-icon {
    width: 80px;
    height: 80px;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 300px; /* Increased for mobile content */
  }

  /* Ensure all content area images are responsive */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__promotion-card .page-promotions__card-image {
    width: 100%;
    height: auto;
    min-height: 200px; /* Ensure min size */
  }
  .page-promotions__step-item .page-promotions__step-icon {
    width: auto;
    height: auto;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__hero-description {
    font-size: 0.9em;
  }

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

  .page-promotions__card-description {
    font-size: 0.85em;
  }

  .page-promotions__faq-item h3 {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions__faq-item h3::after {
    right: 20px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding-bottom: 20px;
  }
}