.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Default text color for dark background */
  background-color: #0D0E12; /* Overall page background */
}

.page-promotions__section {
  padding: 60px 20px;
  box-sizing: border-box;
}

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

/* Color contrast management */
.page-promotions__dark-bg {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-promotions__light-bg {
  background-color: #17191F; /* Card BG color used for light sections */
  color: #FFF3E6;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, then content */
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Pull content up slightly over the image, but not overlapping text */
  background: linear-gradient(0deg, rgba(13,14,18,0.8) 0%, rgba(13,14,18,0) 100%); /* Subtle gradient for readability */
  border-radius: 8px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: 700;
  color: #FFB04D; /* Glow color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: #17191F;
  color: #FFA53A;
  border: 2px solid #A84F0C;
}

.page-promotions__btn-secondary:hover {
  background: #FFA53A;
  color: #17191F;
  border-color: #FFA53A;
  transform: translateY(-2px);
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  color: #FFB04D;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-promotions__section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.05em;
  color: #FFF3E6;
}

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

.page-promotions__promo-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border color */
  transition: transform 0.3s ease;
  color: #FFF3E6;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
}

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

.page-promotions__card-content {
  padding: 25px;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #FFB04D;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card-description {
  font-size: 1em;
  color: #FFF3E6;
  margin-bottom: 20px;
}

.page-promotions__card-content .page-promotions__cta-button {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 1em;
}

.page-promotions__why-choose-us {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__feature-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #FFF3E6;
}

.page-promotions__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-title {
  font-size: 1.4em;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__feature-description {
  font-size: 0.95em;
  color: #FFF3E6;
}

.page-promotions__how-to-participate-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__list-item {
  background-color: #17191F;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #FFA53A;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #FFF3E6;
}

.page-promotions__list-item:last-child {
  margin-bottom: 0;
}

.page-promotions__list-title {
  font-size: 1.3em;
  color: #FFB04D;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__list-item p {
  font-size: 1em;
  color: #FFF3E6;
}

.page-promotions__list-item a {
  color: #FFA53A;
  text-decoration: underline;
}

.page-promotions__list-item a:hover {
  color: #FFB04D;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border: 1px solid #A84F0C;
  border-radius: 10px;
  background-color: #17191F;
  color: #FFF3E6;
}

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: #FFB04D;
  list-style: none;
  outline: none;
}

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

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

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

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF3E6;
}

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

.page-promotions__faq-answer a {
  color: #FFA53A;
  text-decoration: underline;
}

.page-promotions__faq-answer a:hover {
  color: #FFB04D;
}

.page-promotions__cta-banner {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%); /* Use button gradient for banner */
  color: #ffffff;
}

.page-promotions__cta-banner .page-promotions__section-title {
  color: #ffffff;
  margin-bottom: 25px;
}

.page-promotions__cta-banner .page-promotions__description {
  max-width: 800px;
  margin: 0 auto 35px auto;
  color: #ffffff;
}

.page-promotions__cta-banner .page-promotions__cta-button {
  background: #17191F;
  color: #FFA53A;
  border: 2px solid #FFA53A;
}

.page-promotions__cta-banner .page-promotions__cta-button:hover {
  background: #FFA53A;
  color: #17191F;
  border-color: #17191F;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
}

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

  .page-promotions__hero-section {
    padding-top: 10px !important; /* Ensure minimal top padding */
    padding-bottom: 40px;
  }

  .page-promotions__hero-content {
    margin-top: -60px; /* Adjust for smaller screens */
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-promotions__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions__promo-card,
  .page-promotions__feature-item,
  .page-promotions__list-item,
  .page-promotions__faq-item,
  .page-promotions__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__card-image {
    height: 200px;
  }

  .page-promotions__feature-icon {
    width: 80px;
    height: 80px;
  }

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

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

  .page-promotions__cta-banner {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.8em;
  }

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