.page-promotions {
  padding-top: 10px; /* Small padding, body handles main offset */
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-promotions__hero-section {
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}

.page-promotions__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  filter: none; /* No CSS filter to change image color */
}

.page-promotions__main-title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF3E6;
  max-width: 900px;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6;
  max-width: 800px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  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 4px 15px rgba(255, 165, 58, 0.4);
}

.page-promotions__section-title {
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 700;
  color: #FFF3E6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FF8C1A;
  border-radius: 2px;
}

.page-promotions__promotions-list-section {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

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

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

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 176, 77, 0.3);
}

.page-promotions__promotion-image-wrapper {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  overflow: hidden;
  margin: 0;
}

.page-promotions__promotion-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none; /* No CSS filter to change image color */
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-promotions__promotion-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #FF8C1A;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(255, 165, 58, 0.3);
}

.page-promotions__terms-section,
.page-promotions__faq-section {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  padding: 0 15px;
}

.page-promotions__terms-content {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #A84F0C;
}

.page-promotions__terms-content p {
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 25px;
  color: #FFF3E6;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.page-promotions__text-link {
  color: #FF8C1A;
  text-decoration: underline;
  transition: color 0.2s ease;
  font-weight: 500;
}

.page-promotions__text-link:hover {
  color: #FFA53A;
}

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

.page-promotions__faq-item {
  background-color: #17191F;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #A84F0C;
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #FF8C1A;
  margin-bottom: 15px;
}

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

@media (max-width: 768px) {
  .page-promotions__hero-section {
    margin-bottom: 30px;
  }

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

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

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promotions__section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    margin-bottom: 30px;
  }

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promotion-image-wrapper img {
    max-width: 100%; /* Ensure images don't overflow */
    height: auto;
  }

  .page-promotions__promotion-card {
    flex-direction: column;
  }

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

  .page-promotions__card-button {
    font-size: 0.9rem;
    padding: 8px 18px;
  }

  .page-promotions__terms-content,
  .page-promotions__faq-item {
    padding: 20px;
  }

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

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

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

  .page-promotions__promotions-list-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section {
    padding: 0 10px;
  }

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

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

  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

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

  .page-promotions__promotion-image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .page-promotions__terms-list {
    margin-left: 20px;
  }

  .page-promotions__terms-content p,
  .page-promotions__terms-list li,
  .page-promotions__faq-answer {
    font-size: 0.85rem;
  }
}