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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  height: auto;
  max-height: 600px; /* Limit height of hero image */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  position: relative; /* Ensure content is above the background, but not overlapping the image */
  z-index: 2;
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  text-align: center;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  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%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-promotions__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Deep Green with opacity */
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 80px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-promotions__section:last-of-type {
  border-bottom: none;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__text-block {
  font-size: 1.1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 15px #57E38D; /* Glow */
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #2AD16F; /* Lighter green from button gradient */
}

.page-promotions__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__promo-card .page-promotions__btn-primary {
  width: auto;
  align-self: center;
  margin-top: auto; /* Push button to the bottom */
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.page-promotions__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-promotions__list-item::before {
  content: '✓';
  color: #2AD16F; /* Green checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__list-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.page-promotions__steps-list .page-promotions__list-item {
  padding-left: 40px;
}

.page-promotions__steps-list .page-promotions__list-item::before {
  content: attr(data-step);
  background-color: #13994A; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: bold;
  left: 0;
  top: 0;
}

.page-promotions__steps-list .page-promotions__list-item:nth-child(1)::before { content: '1'; }
.page-promotions__steps-list .page-promotions__list-item:nth-child(2)::before { content: '2'; }
.page-promotions__steps-list .page-promotions__list-item:nth-child(3)::before { content: '3'; }
.page-promotions__steps-list .page-promotions__list-item:nth-child(4)::before { content: '4'; }
.page-promotions__steps-list .page-promotions__list-item:nth-child(5)::before { content: '5'; }

.page-promotions__faq-section {
  padding: 80px 0;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-item summary:hover {
  background-color: #1E3A2A; /* Divider for hover */
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F; /* Green */
  margin-left: 20px;
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }
  .page-promotions__main-title {
    font-size: clamp(2em, 8vw, 2.5em); /* Responsive font size */
    margin-top: 20px;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__section {
    padding: 60px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__text-block,
  .page-promotions__list-item,
  .page-promotions__card-description,
  .page-promotions__faq-answer {
    font-size: 0.95em;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__faq-item summary {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.8em, 9vw, 2.2em);
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__card-image {
    height: 150px;
  }
  .page-promotions__promo-card {
    padding: 15px;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__list-item,
  .page-promotions__text-block {
    font-size: 0.9em;
  }
  .page-promotions__faq-item summary {
    font-size: 1em;
  }
}

/* Color contrast safety for dark background */
.page-promotions__dark-bg {
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
}

.page-promotions__light-bg {
  color: #333333;
  background-color: #ffffff;
}

.page-promotions p,
.page-promotions li,
.page-promotions__hero-description,
.page-promotions__card-description,
.page-promotions__faq-answer {
  color: #A7D9B8; /* Text Secondary - ensures good contrast on dark background */
}

.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions__card-title a {
  color: #F2FFF6; /* Text Main - ensures good contrast on dark background */
}

.page-promotions a {
  color: #2AD16F; /* Use a bright green for links for visibility */
  text-decoration: underline;
}

.page-promotions a:hover {
  color: #57E38D; /* Glow color for hover */
}