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

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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  overflow: hidden;
}

.page-promotions__hero-content-wrapper {
  display: flex;
  flex-direction: column; /* Image above text on desktop initially, for mobile it will be easier to manage */
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.page-promotions__hero-text-block {
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

.page-promotions__intro-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-promotions__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-promotions__btn-secondary:hover {
  background: #2AD16F;
  color: #08160F;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-top: 40px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 50px;
}

.page-promotions__introduction p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #F2FFF6;
}

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

.page-promotions__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px; /* Ensure cards have minimum height for content */
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-promotions__vip-program .page-promotions__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__vip-content {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.page-promotions__vip-text {
  flex: 1;
  min-width: 300px;
  color: #F2FFF6;
}

.page-promotions__vip-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__vip-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-promotions__vip-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-join {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promotions__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-promotions__step-card p {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-promotions__terms-conditions p,
.page-promotions__terms-conditions li {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-promotions__terms-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-promotions__terms-list strong {
  color: #F2C14E; /* Gold */
}

.page-promotions__faq-list {
  margin-top: 30px;
}

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

.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: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  list-style: none;
}

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

.page-promotions__faq-question:hover {
  background-color: #13994A;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-color: #2E7A4E;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

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

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

/* Desktop specific adjustments */
@media (min-width: 769px) {
  .page-promotions__hero-content-wrapper {
    flex-direction: row; /* Text left, image right */
    align-items: flex-start;
    justify-content: space-between;
  }

  .page-promotions__hero-text-block {
    text-align: left;
    max-width: 50%;
  }

  .page-promotions__hero-image-wrapper {
    margin-top: 0;
    max-width: 45%;
  }

  .page-promotions__cta-buttons {
    justify-content: flex-start;
  }

  .page-promotions__vip-content {
    flex-wrap: nowrap;
  }

  .page-promotions__vip-text,
  .page-promotions__vip-image-wrapper {
    flex: 1;
  }

  .page-promotions__vip-image-wrapper {
    order: 2; /* Image on the right */
  }

  .page-promotions__vip-text {
    order: 1; /* Text on the left */
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .page-promotions__hero-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions__hero-text-block {
    max-width: 100%;
    text-align: center;
  }

  .page-promotions__hero-image-wrapper {
    margin-top: 40px;
    max-width: 80%;
  }

  .page-promotions__cta-buttons {
    justify-content: center;
  }

  .page-promotions__vip-content {
    flex-direction: column;
  }

  .page-promotions__vip-text,
  .page-promotions__vip-image-wrapper {
    max-width: 100%;
  }
}

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

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

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

  .page-promotions__main-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-promotions__intro-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions__hero-image-wrapper {
    margin-top: 30px;
  }

  .page-promotions__hero-image,
  .page-promotions__card-image,
  .page-promotions__vip-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

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

  .page-promotions__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .page-promotions__promotion-card {
    padding: 20px;
    min-height: auto;
  }

  .page-promotions__card-title {
    font-size: 1.4rem;
  }

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .page-promotions__vip-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-promotions__vip-text,
  .page-promotions__vip-image-wrapper {
    max-width: 100%;
  }

  .page-promotions__vip-image-wrapper {
    order: unset;
  }

  .page-promotions__vip-text {
    order: unset;
  }

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

  .page-promotions__step-card {
    padding: 20px;
  }

  .page-promotions__step-title {
    font-size: 1.2rem;
  }

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

  .page-promotions__terms-conditions p,
  .page-promotions__terms-conditions li {
    font-size: 1rem;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  
  /* Ensure all content sections and cards adapt to mobile width */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions__promotion-card,
  .page-promotions__step-card,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}