.page-promotions {
  color: #FFF6D6; /* Light text for dark background */
  background-color: #0A0A0A; /* Page background */
  font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
  position: relative;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for hero content */
  overflow: hidden;
}

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

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

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Main brand color */
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
  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%); /* Button gradient */
  color: #111111; /* Dark text on light button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
  min-width: 200px;
}

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

.page-promotions__cta-button--mobile {
  margin-top: 30px;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25rem;
  min-width: 250px;
}

.page-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #FFD36B; /* Auxiliary brand color */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 60px;
  font-weight: 600;
}

.page-promotions__sub-title {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  color: #F2C14E;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.page-promotions__text-block {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__promo-card {
  background-color: #111111; /* Card background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border color */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-in-out;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
}

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

.page-promotions__card-title {
  font-size: 1.3rem;
  color: #F2C14E;
  padding: 20px 20px 10px;
  font-weight: 600;
  line-height: 1.4;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-promotions__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

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

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-promotions__step-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-item strong {
  color: #F2C14E;
}

.page-promotions__faq-container {
  max-width: 900px;
  margin: 40px auto;
}

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

.page-promotions__faq-question {
  font-size: 1.1rem;
  color: #FFD36B;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  padding: 0 25px 20px;
  margin: 0;
  display: none;
}

.page-promotions__final-cta {
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
  background-color: #111111;
  border-top: 1px solid #3A2A12;
  border-bottom: 1px solid #3A2A12;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    min-width: unset;
  }
  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
    margin-top: 40px;
  }
  .page-promotions__sub-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
    margin-top: 30px;
  }
  .page-promotions__text-block, .page-promotions__card-text, .page-promotions__step-item, .page-promotions__faq-answer {
    font-size: 0.9rem;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image {
    height: 200px; /* Ensure images are not too small */
  }
  /* Ensure all images in content area are not smaller than 200px on mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__card-image {
    min-height: 200px;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.3rem, 8vw, 2rem);
  }
  .page-promotions__cta-button {
    width: 100%;
  }
  .page-promotions__card-button {
    width: calc(100% - 40px);
  }
}