.page-promotions {
  color: #FFF6D6;
  background-color: #0A0A0A;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, main offset handled by body */
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  /* Ensure image is above content */
  order: 1;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
  order: 2; /* Ensure content is below image in DOM flow */
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__tagline {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__overview-section,
.page-promotions__how-it-works-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-promotions__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__promotion-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border: 1px solid #3A2A12;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #3A2A12;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin: 20px 15px 10px 15px;
  font-weight: 600;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #FFF6D6;
  padding: 0 15px 20px 15px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}

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

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

.page-promotions__step-card {
  background-color: #111111;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-promotions__step-title {
  font-size: 1.6rem;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.page-promotions__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}

.page-promotions__step-button:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
}

.page-promotions__faq-item {
  background-color: #111111;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid #3A2A12;
}

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

.page-promotions__faq-answer {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-promotions__cta-bottom-section .page-promotions__section-title {
  margin-top: 20px;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
}

.page-promotions__cta-button--secondary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
  padding: 13px 28px; /* Adjust padding for border */
}

.page-promotions__cta-button--secondary:hover {
  background: #F2C14E;
  color: #111111;
  border-color: #F2C14E;
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 15px;
  }

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

  .page-promotions__tagline {
    font-size: 1rem;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
  }

  .page-promotions__section-title {
    font-size: 2rem;
  }

  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .page-promotions__steps-container {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

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

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__cta-button--secondary {
    padding: 12px 25px;
  }

  .page-promotions__hero-image,
  .page-promotions__card-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
    min-height: 200px; /* Minimum height for content images */
  }

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

  /* Ensure all img elements within .page-promotions are responsive and meet min-size */
  .page-promotions img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
  }
}