.page-promotions {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for first section */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px; /* Space between image and text on small screens */
}

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

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

.page-promotions__main-title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 30px;
  color: #e5e5e5;
}

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

.page-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #ccc;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__promo-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 200px; /* Ensure minimum height for content */
}

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

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

.page-promotions__card-title {
  font-size: 1.4rem;
  color: #FFD700;
  padding: 15px 20px 10px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: #ccc;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #8B0000;
  color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-promotions__card-button:hover {
  background-color: #a00000;
}

.page-promotions__how-to-claim .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-title {
  margin-bottom: 20px;
}

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

.page-promotions__step-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 25px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  flex: 1 1 calc(33% - 40px);
  box-sizing: border-box;
}

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

.page-promotions__step-text {
  font-size: 0.95rem;
  color: #ccc;
}

.page-promotions__cta-wrapper {
  margin-top: 40px;
}

.page-promotions__secondary-cta {
  display: inline-block;
  background-color: #8B0000;
  color: #f5f5f5;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.page-promotions__secondary-cta:hover {
  background-color: #a00000;
}

.page-promotions__faq-container {
  margin-top: 30px;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
  font-size: 1.15rem;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

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

.page-promotions__faq-question.active + .page-promotions__faq-answer {
  display: block;
}

.page-promotions__cta-banner {
  background-color: #1a1a1a;
  padding: 60px 20px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.page-promotions__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__cta-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #e5e5e5;
  margin-bottom: 30px;
}

.page-promotions__primary-cta-button,
.page-promotions__secondary-cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0 10px 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__primary-cta-button {
  background-color: #FFD700;
  color: #8B0000;
}

.page-promotions__primary-cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__secondary-cta-button {
  background-color: #8B0000;
  color: #f5f5f5;
  border: 2px solid #8B0000;
}

.page-promotions__secondary-cta-button:hover {
  background-color: #a00000;
  border-color: #a00000;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: 10px;
  }

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

  .page-promotions__steps-container {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__step-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-promotions__primary-cta-button,
  .page-promotions__secondary-cta-button {
    display: block;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .page-promotions__section,
  .page-promotions__cta-banner {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions__promo-card,
  .page-promotions__step-card,
  .page-promotions__faq-item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 2rem;
  }

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

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

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

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

  .page-promotions__card-text {
    font-size: 0.9rem;
  }

  .page-promotions__primary-cta-button,
  .page-promotions__secondary-cta-button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}