.page-promotions {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 20px;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive font size */
}

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

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

.page-promotions__hero-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-promotions__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-promotions__hero-button--secondary {
  background: #111111;
  color: #F2C14E;
  border: 2px solid #F2C14E;
  box-shadow: none;
}

.page-promotions__hero-button--secondary:hover {
  background: #222222;
  color: #FFD36B;
  border-color: #FFD36B;
}

.page-promotions__offers-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-promotions__section-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #E5E5E5;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(242, 193, 78, 0.3);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #3A2A12;
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #E5E5E5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-align: center;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
}

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

.page-promotions__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-promotions__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(242, 193, 78, 0.2);
}

.page-promotions__step-icon {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD36B;
  margin-bottom: 15px;
  text-shadow: 0 0 5px rgba(255, 211, 107, 0.7);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-promotions__primary-cta {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.5);
  border: none;
  cursor: pointer;
}

.page-promotions__primary-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.7);
}

.page-promotions__faq-section {
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.3rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
  cursor: pointer; /* Implies expand/collapse functionality */
}

.page-promotions__faq-answer {
  font-size: 1rem;
  color: #E5E5E5;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

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

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

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

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

  .page-promotions__promotion-card,
  .page-promotions__step-card,
  .page-promotions__faq-item {
    margin-bottom: 15px;
  }

  .page-promotions__card-image, .page-promotions__promotion-card img, .page-promotions__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section,
  .page-promotions__offers-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section {
    padding: 25px 15px;
  }

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

  .page-promotions__hero-description,
  .page-promotions__section-description,
  .page-promotions__card-text,
  .page-promotions__step-text,
  .page-promotions__faq-answer {
    font-size: 0.95rem;
  }

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

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

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

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