.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding to ensure content isn't flush with header */
}

.page-promotions__hero-section {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__hero-content {
  text-align: center;
  padding: 40px 20px;
  background-color: #111111;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-promotions__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px; /* Ensure buttons are not too small */
  text-align: center;
}

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

.page-promotions__button--primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px #FFD36B;
}

.page-promotions__button--secondary {
  background-color: #111111;
  color: #F2C14E;
  border: 2px solid #3A2A12;
}

.page-promotions__button--secondary:hover {
  background-color: #1A1A1A;
  color: #FFD36B;
  border-color: #FFD36B;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promotions__button--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  min-width: 100px;
}

.page-promotions__overview-section,
.page-promotions__featured-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #111111;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__promotion-card {
  background-color: #0A0A0A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 10px;
  padding: 0 15px;
}

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

.page-promotions__featured-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-promotions__featured-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__featured-text {
  text-align: center;
  max-width: 700px;
}

.page-promotions__featured-title {
  font-size: 2rem;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-promotions__featured-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.page-promotions__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.page-promotions__step-card {
  background-color: #0A0A0A;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F2C14E;
  color: #111111;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 0 10px #FFD36B;
}

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

.page-promotions__step-description {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-promotions__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  color: #F2C14E;
  margin-bottom: 10px;
}

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

.page-promotions__cta-section {
  text-align: center;
  padding: 50px 20px;
}

.page-promotions__cta-content {
  background-color: #0A0A0A;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border: 1px solid #3A2A12;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(242, 193, 78, 0.3);
}

.page-promotions__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__cta-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
}

@media (min-width: 768px) {
  .page-promotions__hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, #111111 0%, rgba(17, 17, 17, 0.8) 50%, rgba(17, 17, 17, 0) 100%);
    padding: 80px 20px 40px;
    border-radius: 0;
  }

  .page-promotions__hero-image-wrapper {
    height: 600px;
  }

  .page-promotions__hero-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-promotions__featured-content {
    flex-direction: row;
    text-align: left;
    gap: 50px;
  }

  .page-promotions__featured-image {
    width: 45%;
    flex-shrink: 0;
  }

  .page-promotions__featured-text {
    text-align: left;
  }

  .page-promotions__cta-content {
    flex-direction: row;
    gap: 40px;
    text-align: left;
    padding: 50px;
  }

  .page-promotions__cta-image {
    width: 40%;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .page-promotions__promotions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-promotions__hero-image-wrapper {
    height: 700px;
  }
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .page-promotions__hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__button {
    width: 80%;
    max-width: 300px;
  }

  .page-promotions__promotion-image,
  .page-promotions__featured-image,
  .page-promotions__cta-image {
    max-width: 100%;
    height: auto;
  }

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

  .page-promotions__featured-title {
    font-size: 1.5rem;
  }

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

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

  .page-promotions__hero-content {
    position: relative;
    padding: 30px 15px;
    background: #111111;
  }
  .page-promotions__hero-image-wrapper {
    height: auto;
  }

  .page-promotions__hero-image,
  .page-promotions__promotion-image,
  .page-promotions__featured-image,
  .page-promotions__cta-image {
    max-width: 100%;
    height: auto;
  }

  .page-promotions__overview-section img, 
  .page-promotions__featured-section img, 
  .page-promotions__how-to-claim-section img, 
  .page-promotions__faq-section img, 
  .page-promotions__cta-section img {
    max-width: 100%;
    height: auto;
  }
}