.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark background */
  background-color: #08160F; /* Main background */
}

.page-promotions__section {
  padding: 60px 20px;
  position: relative;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

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

.page-promotions__light-bg {
  background-color: #11271B;
  color: #F2FFF6;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #A7D9B8;
}

.page-promotions__link-text {
  color: #22C768;
  text-decoration: underline;
}

.page-promotions__link-text:hover {
  color: #57E38D;
}

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles top padding, small top for this section */
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content slightly over image for visual effect, but not overlap text */
  background-color: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  border: 1px solid #2E7A4E;
}

.page-promotions__main-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #F2C14E;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__subtitle {
  font-size: 1.25rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #F2FFF6;
  border: 2px solid #2AD16F;
}

.page-promotions__btn-secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Offer Types Grid */
.page-promotions__offer-types .page-promotions__section-title {
  color: #F2C14E;
}

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

.page-promotions__card {
  background-color: #11271B;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.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-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How-to-claim section */
.page-promotions__how-to-claim .page-promotions__section-title {
  color: #F2C14E;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__steps-list li {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #F2FFF6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.page-promotions__steps-list li:hover {
  transform: translateX(5px);
}

.page-promotions__steps-list li strong {
  color: #2AD16F;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

/* Terms & Conditions */
.page-promotions__terms-conditions .page-promotions__section-title {
  color: #F2C14E;
}

/* FAQ Section */
.page-promotions__faq .page-promotions__section-title {
  color: #F2C14E;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green for summary */
  user-select: none;
  list-style: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
}

/* Conclusion Section */
.page-promotions__conclusion .page-promotions__section-title {
  color: #F2C14E;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -100px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
  .page-promotions__subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles --header-offset */
  }
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions__subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-promotions__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .page-promotions__text-block, .page-promotions__card-description, .page-promotions__steps-list li, .page-promotions__faq-answer p {
    font-size: 0.95rem;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__grid-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .page-promotions__steps-list li {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -60px;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
  }
  .page-promotions__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }
  .page-promotions__subtitle {
    font-size: 0.9rem;
  }
  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}