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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  order: 1; /* Ensure image comes before content in DOM flow */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  order: 2; /* Ensure content comes after image in DOM flow */
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: #FCBC45; /* Golden accent */
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.page-promotions__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 180px;
}

.page-promotions__cta-button--register {
  background-color: #FFFFFF; /* White for Register */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promotions__cta-button--register:hover {
  background-color: #e0e0e0;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions__cta-button--login:hover {
  background-color: #e6a738;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #1a1a1a; /* Darker background for sections */
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__section:last-of-type {
  margin-bottom: 0;
}

.page-promotions__section-title {
  font-size: 2.2rem;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 40px;
  color: #e5e5e5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__promo-card {
  background-color: #222222;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #333333;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__promo-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__promo-text {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__promo-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 0.95rem;
  font-weight: bold;
  text-decoration: none;
  color: #000000;
  background-color: #FCBC45;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-promotions__how-to-claim {
  background-color: #111111;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions__step-item {
  background-color: #222222;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 60px;
}

.page-promotions__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FCBC45;
  color: #000000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

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

.page-promotions__step-text {
  font-size: 1rem;
  color: #cccccc;
}

.page-promotions__how-to-cta {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-promotions__benefit-item {
  background-color: #222222;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #FCBC45;
}

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

.page-promotions__benefit-text {
  font-size: 0.95rem;
  color: #cccccc;
}

.page-promotions__faq {
  background-color: #111111;
}

.page-promotions__faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions__faq-item {
  background-color: #222222;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__faq-question {
  font-size: 1.2rem;
  color: #FCBC45;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
}

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

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

.page-promotions__cta-final {
  text-align: center;
  padding: 50px 20px;
  background-color: #000000; /* Primary background color */
  border-radius: 10px;
}

.page-promotions__cta-final .page-promotions__section-title {
  color: #FFFFFF;
}

.page-promotions__cta-final .page-promotions__section-description {
  color: #cccccc;
  margin-bottom: 30px;
}

.page-promotions__cta-final .page-promotions__cta-group {
  margin-top: 30px;
}

.page-promotions__cta-button--primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions__cta-button--primary:hover {
  background-color: #e6a738;
  border-color: #e6a738;
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promotions a {
  color: #FCBC45;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions a:hover {
  color: #e6a738;
}

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

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

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

  .page-promotions__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions__section {
    padding: 40px 15px;
  }

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

  .page-promotions__section-description {
    font-size: 0.95rem;
  }

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

  .page-promotions__promo-image {
    height: 200px;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions__promo-title {
    font-size: 1.3rem;
  }

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

  .page-promotions__step-item {
    padding-left: 50px;
  }

  .page-promotions__step-item::before {
    left: 15px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .page-promotions__step-title {
    font-size: 1.1rem;
  }

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

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

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

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

  .page-promotions__faq-answer {
    font-size: 0.9rem;
  }

  .page-promotions__cta-final {
    padding: 30px 15px;
  }

  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}