.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-color);
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
  color: var(--text-main);
}

.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;
  opacity: 0.2; /* Subtle overlay */
}

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

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

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
}

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

.page-promotions__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-promotions__text {
  font-size: 1.05em;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promotions__list-item {
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main);
  border-left: 5px solid var(--gold);
}

.page-promotions__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__promo-card {
  background-color: var(--card-background);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

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

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-promotions__promo-card h3 {
  font-size: 1.4em;
  color: var(--gold);
  margin: 20px 20px 10px 20px;
}

.page-promotions__promo-desc {
  font-size: 0.95em;
  color: var(--text-secondary);
  padding: 0 20px;
  flex-grow: 1;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  margin: 20px;
  border-radius: 8px;
  font-size: 0.95em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: var(--gold);
  color: var(--background-color);
  border: 2px solid var(--gold);
  text-align: center;
}

.page-promotions__btn-secondary:hover {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions__step-item {
  background-color: var(--card-background);
  border-radius: 15px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--green-accent);
}

.page-promotions__step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.page-promotions__step-title {
  font-size: 1.3em;
  color: var(--gold);
  margin-bottom: 15px;
}

.page-promotions__step-desc {
  font-size: 0.95em;
  color: var(--text-secondary);
}

.page-promotions__step-desc a {
  color: var(--green-accent);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-desc a:hover {
  text-decoration: underline;
}

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

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: var(--card-background);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 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.1em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--card-background);
  border-bottom: 1px solid var(--border-color);
}

.page-promotions__faq-question:hover {
  background-color: var(--hover-background);
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--gold);
}

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

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

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

/* Color Variables */
:root {
  --background-color: #08160F; /* Dark Green */
  --text-main: #E0E0E0; /* Light Grey */
  --text-secondary: #B0B0B0; /* Medium Grey */
  --gold: #F2C14E; /* Gold Accent */
  --green-accent: #2AD16F; /* Bright Green Accent */
  --card-background: #1A2B23; /* Slightly lighter dark green for cards */
  --border-color: #3A4A42; /* Border color */
  --hover-background: #2A3B33; /* Hover background for interactive elements */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
  }

  .page-promotions__main-title {
    font-size: 2.5em;
  }

  .page-promotions__description {
    font-size: 1em;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions__section {
    padding: 60px 15px;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__text {
    font-size: 0.95em;
  }

  .page-promotions__list {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-card h3 {
    font-size: 1.2em;
  }

  .page-promotions__promo-desc {
    font-size: 0.9em;
  }

  .page-promotions__btn-secondary {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promotions__steps-list {
    grid-template-columns: 1fr;
  }

  .page-promotions__step-title {
    font-size: 1.1em;
  }

  .page-promotions__faq-question {
    font-size: 1em;
  }

  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
}