:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #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;
}

/* Base styles for the promotions page */
.page-promotions {
  background-color: var(--background-color);
  color: var(--text-main-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

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

.page-promotions__section {
  padding: 40px 0;
  text-align: center;
}

.page-promotions__dark-bg {
  background-color: var(--card-bg);
  color: var(--text-main-color);
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: var(--card-bg);
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
  text-align: center;
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 1.1em;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Titles */
.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: var(--gold-color);
  margin-bottom: 30px;
  font-weight: bold;
}

/* Text Content */
.page-promotions__text-content {
  font-size: 1em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  text-align: left;
}

.page-promotions__text-content strong {
  color: var(--text-main-color);
}

.page-promotions__text-content a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Call to Action Buttons */
.page-promotions__cta-button {
  display: inline-block;
  background: var(--button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-promotions__cta-button--secondary {
  background: var(--primary-color);
  margin-left: 15px;
}

.page-promotions__cta-button--secondary:hover {
  background-color: var(--secondary-color);
}

/* Image content within sections */
.page-promotions__image-content {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Lists */
.page-promotions__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
}

.page-promotions__list-item {
  background-color: var(--card-bg);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid var(--primary-color);
  color: var(--text-main-color);
  font-size: 1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__list-item strong {
  color: var(--gold-color);
}

/* Steps List */
.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  text-align: left;
  margin-top: 30px;
}

.page-promotions__steps-item {
  position: relative;
  padding: 20px 20px 20px 70px;
  margin-bottom: 20px;
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-secondary-color);
}

.page-promotions__steps-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  border: 2px solid var(--gold-color);
}

.page-promotions__steps-item strong {
  color: var(--text-main-color);
  display: block;
  margin-bottom: 5px;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 30px;
  text-align: left;
}

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

.page-promotions__faq-item summary {
  display: block;
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--gold-color);
  position: relative;
  list-style: none; /* Remove default marker */
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Remove default marker for Webkit browsers */
}

.page-promotions__faq-qtext {
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100% - 40px);
}

.page-promotions__faq-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: var(--text-secondary-color);
  line-height: 1.6;
}

/* Final CTA Section */
.page-promotions__final-cta .page-promotions__cta-button {
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-promotions__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.5em);
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-promotions__hero-content {
    margin-top: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-promotions__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5em, 5.5vw, 2em);
    margin-bottom: 20px;
  }

  .page-promotions__text-content,
  .page-promotions__list-item,
  .page-promotions__steps-item,
  .page-promotions__faq-answer {
    font-size: 0.95em;
  }

  .page-promotions__cta-button,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
  
  .page-promotions__cta-button--secondary {
    margin-top: 10px;
  }

  .page-promotions__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__section,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }

  .page-promotions__steps-item {
    padding: 15px 15px 15px 60px;
  }

  .page-promotions__steps-item::before {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }

  .page-promotions__faq-item summary {
    padding: 15px;
    font-size: 1em;
  }

  .page-promotions__faq-toggle {
    right: 15px;
    font-size: 1.3em;
  }

  .page-promotions__faq-answer {
    padding: 0 15px 15px 15px;
  }

  /* Ensure no image filters */
  .page-promotions img {
    filter: none !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }

  .page-promotions__section-title {
    font-size: clamp(1.3em, 6.5vw, 1.8em);
  }

  .page-promotions__cta-button {
    font-size: 0.95em !important;
    padding: 10px 15px !important;
  }

  .page-promotions__list-item,
  .page-promotions__steps-item,
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
}