.page-promotions {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #f4f4f4;
}

.page-promotions__hero-section {
  position: relative;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  text-align: center;
  overflow: hidden;
  background-color: #f4f4f4;
}

.page-promotions__hero-image-wrapper {
  max-height: 600px; /* Limit height for hero image wrapper */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure image is not too small */
}

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

.page-promotions__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions__cta-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

.page-promotions__promo-grid,
.page-promotions__how-to-claim,
.page-promotions__faq,
.page-promotions__call-to-action,
.page-promotions__related-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-promotions__section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #8B0000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

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

.page-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-promotions__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
  text-align: center;
  border: 1px solid #FFD700;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

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

.page-promotions__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px; /* Ensure image is not too small */
}

.page-promotions__step-title {
  font-size: 1.2rem;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__step-description {
  font-size: 0.9rem;
  color: #555555;
}

.page-promotions__step-description a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-description a:hover {
  text-decoration: underline;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  padding: 20px;
}

.page-promotions__faq-question {
  font-size: 1.1rem;
  color: #8B0000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: 600;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: #FFD700;
}

.page-promotions__faq-answer {
  font-size: 0.95rem;
  color: #555555;
  display: none; /* Hidden by default, toggled by JS */
}

.page-promotions__call-to-action {
  text-align: center;
  background-color: #8B0000;
  color: #ffffff;
  padding: 50px 20px;
  border-radius: 10px;
}

.page-promotions__cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

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

.page-promotions__related-link {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 1px solid #FFD700;
}

.page-promotions__related-link:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #8B0000;
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

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

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

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

  .page-promotions__promo-grid,
  .page-promotions__how-to-claim,
  .page-promotions__faq,
  .page-promotions__call-to-action,
  .page-promotions__related-content {
    margin: 30px auto;
    padding: 0 15px;
  }

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

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

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

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

  .page-promotions__cta-text {
    font-size: 1rem;
  }

  .page-promotions__related-links {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__related-link {
    width: 100%;
    max-width: 250px;
  }

  /* Mobile image overflow prevention */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}