.page-promotions {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  color: #F2FFF6; /* Text Main */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #F2FFF6;
}

.page-promotions__hero-description {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-link {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 15px rgba(17, 168, 78, 0.6);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E; /* Main Color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary:hover {
  background: #11A84E; /* Main Color */
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions__btn-link {
  background: transparent;
  color: #2AD16F; /* Lighter Green from gradient */
  border: 1px solid #2AD16F;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-promotions__btn-link:hover {
  background: #2AD16F;
  color: #ffffff;
}

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

.page-promotions__section-title {
  font-size: 2.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-promotions__overview-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__overview-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__overview-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__overview-item-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-promotions__overview-item-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-promotions__promo-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card-title {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promo-card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promotions__promo-card-features li {
  display: flex;
  align-items: center;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.page-promotions__icon-check {
  color: #2AD16F; /* Lighter Green from gradient */
  margin-right: 10px;
  font-size: 1.2rem;
}

.page-promotions__icon-check::before {
  content: '✓';
}

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

.page-promotions__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 8px rgba(17, 168, 78, 0.4);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-promotions__terms-conditions-section .page-promotions__content-block {
  background-color: #11271B; /* Card BG */
  border-radius: 15px;
  padding: 40px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__content-subtitle {
  font-size: 1.6rem;
  color: #F2FFF6; /* Text Main */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions__content-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

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

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: #0A4B2C; /* Deep Green */
  border-bottom-color: #2E7A4E;
}

.page-promotions__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: #2AD16F; /* Lighter Green from gradient */
  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; /* Text Secondary */
  line-height: 1.6;
}

.page-promotions__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 15px;
  padding: 60px 20px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__cta-title {
  font-size: 2.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: 2rem;
  }
  .page-promotions__promo-card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 60px 15px;
  }
  .page-promotions__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-link {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__section-title {
    font-size: 1.8rem;
  }
  .page-promotions__section-description {
    font-size: 1rem;
  }
  .page-promotions__overview-grid,
  .page-promotions__promo-cards-grid,
  .page-promotions__steps-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions__promo-card-image {
    height: 200px;
  }
  .page-promotions__promo-card-content {
    padding: 20px;
  }
  .page-promotions__promo-card-title {
    font-size: 1.3rem;
  }
  .page-promotions__content-subtitle {
    font-size: 1.4rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-promotions__cta-title {
    font-size: 1.8rem;
  }
  .page-promotions__cta-description {
    font-size: 1rem;
  }
  /* Mobile responsive for images */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-section,
  .page-promotions__overview-section,
  .page-promotions__current-promos-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
  }
  .page-promotions__promo-card .page-promotions__btn-primary {
    width: auto !important; /* Allow button to size based on content if not full width */
    align-self: flex-start; /* Align to left in column layout */
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions__section-title {
    font-size: 1.5rem;
  }
  .page-promotions__hero-description {
    font-size: 0.95rem;
  }
  .page-promotions__promo-card-title {
    font-size: 1.2rem;
  }
  .page-promotions__promo-card-description,
  .page-promotions__overview-item-text,
  .page-promotions__step-text,
  .page-promotions__content-text,
  .page-promotions__faq-answer p {
    font-size: 0.9rem;
  }
  .page-promotions__faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }
  .page-promotions__cta-title {
    font-size: 1.5rem;
  }
  .page-promotions__cta-description {
    font-size: 0.95rem;
  }
}