.page-promotions__hero-section {
  padding-top: 10px; /* Small top padding to respect shared header offset */
  background-color: var(--background-color); 
  color: var(--text-main-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  overflow-x: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

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

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

.page-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color);
  letter-spacing: -0.03em;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main-color);
}

.page-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-promotions__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
}

.page-promotions__button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-promotions__button--secondary {
  background-color: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-main-color);
}

.page-promotions__button--secondary:hover {
  background-color: var(--border-color);
  color: #0A0A0A;
  box-shadow: 0 5px 15px rgba(58, 42, 18, 0.4);
}

.page-promotions__featured-promos-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
  padding: 60px 20px;
  background-color: var(--background-color);
  color: var(--text-main-color);
  text-align: center;
  max-width: 100%;
  overflow-x: hidden;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main-color);
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-main-color);
}

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

.page-promotions__promo-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-promotions__promo-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-promotions__card-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-promotions__button--card {
  width: 100%;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.page-promotions__button--card:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-icon {
  background-color: var(--primary-color);
  color: #111111;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-promotions__step-content {
  flex-grow: 1;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-main-color);
}

.page-promotions__step-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-main-color);
}

.page-promotions__claim-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-main-color);
}

.page-promotions__cta-section {
  background-color: var(--card-bg-color);
  border-top: 1px solid var(--border-color);
}

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

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

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

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

  .page-promotions__hero-actions,
  .page-promotions__claim-actions,
  .page-promotions__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__button {
    width: 100%;
    max-width: 300px; /* Constrain button width on small screens */
    margin: 0 auto;
  }

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

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

  .page-promotions__section-description {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

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

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .page-promotions__step-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-promotions__step-title {
    font-size: 1.2rem;
  }

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

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

  /* Ensure content images do not overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

/* General styling for content images */
.page-promotions img:not(.page-promotions__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Ensure images in content areas are not too small */
.page-promotions__promo-image,
.page-promotions__step-icon-img { /* if any step icons were images */
  width: auto; /* Allow natural sizing */
  height: auto; /* Allow natural sizing */
  max-width: 100%; /* Ensure responsiveness */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-promotions__promo-image,
  .page-promotions__step-icon-img {
    max-width: 100%;
    height: auto;
  }
}