.page-promotions {
  font-family: Arial, sans-serif;
  color: var(--text-main, #F2FFF6); /* Default text color for the page */
  background-color: var(--bg-color, #08160F); /* Ensure page background matches body */
  line-height: 1.6;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--bg-color, #08160F);
  text-align: center;
}

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

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

.page-promotions__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure width:100% is present for desktop too */
  padding: 0 15px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

/* General Section Styling */
.page-promotions__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__text-block {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text-block strong {
  color: var(--text-main, #F2FFF6);
}

.page-promotions__text-block a {
  color: var(--gold, #F2C14E); /* Using gold for links in text blocks */
  text-decoration: underline;
}

/* CTA Buttons */
.page-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.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%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border, #2E7A4E);
}

.page-promotions__btn-secondary:hover {
  background: var(--border, #2E7A4E);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(46, 122, 78, 0.4);
}

/* Promo Categories Grid */
.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions__card {
  background: var(--card-bg, #11271B);
  color: var(--text-secondary, #A7D9B8);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold, #F2C14E);
  margin: 20px 20px 10px;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__card .page-promotions__btn-primary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* How to Claim Steps */
.page-promotions__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  background: var(--card-bg, #11271B);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-promotions__step-description a {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
}

/* Terms & Conditions */
.page-promotions__terms-list {
  list-style: disc;
  padding-left: 40px;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
}

.page-promotions__terms-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-promotions__terms-item strong {
  color: var(--text-main, #F2FFF6);
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-item {
  background: var(--card-bg, #11271B);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main, #F2FFF6);
  cursor: pointer;
  background: var(--deep-green, #0A4B2C);
  border-bottom: 1px solid var(--divider, #1E3A2A);
  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.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold, #F2C14E);
}

.page-promotions__faq-answer {
  padding: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  background: var(--card-bg, #11271B);
}

.page-promotions__faq-answer p {
  margin-bottom: 10px;
}

.page-promotions__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-promotions__faq-answer a {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
}

/* Bottom CTA */
.page-promotions__cta-bottom {
  text-align: center;
  padding-bottom: 80px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2rem;
  }
}