.page-promotions {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, main padding from body */
  padding-bottom: 40px;
  overflow: hidden;
}

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

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 15px;
  max-width: 900px; /* Constrain H1 width */
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-promotions__hero-description {
  font-size: 1.125rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-width: 200px;
  text-align: center;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(42, 209, 111, 0.3);
}

.page-promotions__offers-grid,
.page-promotions__how-to-claim,
.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6;
  background: linear-gradient(90deg, #F2C14E, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.page-promotions__promo-card {
  background-color: #11271B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(87, 227, 141, 0.3);
}

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

.page-promotions__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold for titles */
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.page-promotions__card-title:hover {
  color: #57E38D; /* Glow color on hover */
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(42, 209, 111, 0.2);
}

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

.page-promotions__step-item {
  background-color: #11271B;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #1E3A2A;
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #0A4B2C;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  color: #57E38D;
  margin-bottom: 20px;
  border: 2px solid #2E7A4E;
}

.page-promotions__step-title {
  font-size: 1.35rem;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
}

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

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

.page-promotions__final-cta {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__faq-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__faq-item {
  background-color: #11271B;
  border-radius: 10px;
  padding: 25px;
  border: 1px solid #1E3A2A;
}

.page-promotions__faq-question {
  font-size: 1.25rem;
  color: #F2FFF6;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #57E38D;
  transition: transform 0.2s ease;
}

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

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
  display: none; /* Hidden by default */
  margin-top: 15px;
}

.page-promotions__faq-answer.is-open {
  display: block;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-promotions__hero-image {
    margin-bottom: 15px;
  }

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

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

  .page-promotions__cta-button {
    width: 100%;
    max-width: 300px;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions__offers-grid,
  .page-promotions__how-to-claim,
  .page-promotions__faq-section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

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

  .page-promotions__card-image {
    height: 200px;
  }

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

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

  .page-promotions__card-button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

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

  .page-promotions__step-item {
    padding: 25px;
  }

  .page-promotions__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }

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

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

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

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .page-promotions__hero-image {
    width: 100%;
    height: auto;
  }
  .page-promotions__card-image {
    width: 100%;
    height: auto;
  }
}

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

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

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

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

  .page-promotions__promo-card {
    margin-bottom: 20px;
  }

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

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

  .page-promotions__step-item {
    padding: 20px;
  }

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

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

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