.page-promotions {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
  
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for dark background */
  background-color: var(--background-color); /* Body background from shared.css is var(--background-color) which is #08160F */
}

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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background: var(--deep-green-color);
}

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

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

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promotions__intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-promotions__section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-color);
}

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-main-color);
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.page-promotions__section-description {
  font-size: 1rem;
  color: var(--text-secondary-color);
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-promotions__feature-card, .page-promotions__type-card, .page-promotions__step-card {
  background-color: var(--card-bg-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-promotions__feature-card:hover, .page-promotions__type-card:hover, .page-promotions__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__feature-icon, .page-promotions__card-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  display: block;
}

.page-promotions__feature-title, .page-promotions__type-title, .page-promotions__step-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.page-promotions__feature-text, .page-promotions__type-text, .page-promotions__step-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
  flex-grow: 1;
}

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

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-promotions__btn-secondary {
  background: none;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--background-color);
  box-shadow: 0 0 15px var(--gold-color);
}

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

.page-promotions__step-button {
  margin-top: 25px;
}

.page-promotions__terms-conditions, .page-promotions__faq, .page-promotions__cta-bottom {
  background-color: var(--deep-green-color);
}

.page-promotions__terms-list {
  text-align: left;
  margin-top: 40px;
}

.page-promotions__term-item {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-promotions__term-title {
  font-size: 1.3rem;
  color: var(--gold-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions__term-text {
  font-size: 1rem;
  color: var(--text-secondary-color);
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg-color);
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main-color);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-promotions__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-color);
  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: var(--text-secondary-color);
}

.page-promotions__cta-bottom {
  padding-bottom: 100px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .page-promotions__intro-text {
    font-size: 1rem;
  }
  .page-promotions__section {
    padding: 60px 0;
  }
  .page-promotions__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-promotions__section-description {
    margin-bottom: 40px;
  }
  .page-promotions__feature-grid, .page-promotions__type-cards, .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__feature-card, .page-promotions__type-card, .page-promotions__step-card {
    padding: 25px;
  }
  .page-promotions__feature-title, .page-promotions__type-title, .page-promotions__step-title {
    font-size: 1.3rem;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100% !important;
    display: block;
  }
  .page-promotions__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    margin-top: 40px;
  }
  .page-promotions__step-button {
    width: 100% !important;
  }
  .page-promotions__term-item {
    padding: 20px;
  }
  .page-promotions__term-title {
    font-size: 1.2rem;
  }
  .page-promotions__faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 18px 20px;
  }
  .page-promotions__hero-image,
  .page-promotions__feature-icon,
  .page-promotions__card-image,
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__section,
  .page-promotions__container,
  .page-promotions__feature-card,
  .page-promotions__type-card,
  .page-promotions__step-card,
  .page-promotions__term-item,
  .page-promotions__faq-item,
  .page-promotions__hero-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-promotions__why-choose-us .page-promotions__container,
  .page-promotions__promotion-types .page-promotions__container,
  .page-promotions__how-to-claim .page-promotions__container,
  .page-promotions__terms-conditions .page-promotions__container,
  .page-promotions__faq .page-promotions__container,
  .page-promotions__cta-bottom .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}