.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text for dark background */
  background-color: #0A2239; /* Main dark background */
  line-height: 1.6;
}

.page-promotions .highlight {
  color: #FFD700; /* Auxiliary gold for highlights */
}

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

.page-promotions__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2239 0%, #1A3A54 100%); /* Dark blue gradient */
  color: #F5F5F5;
  text-align: center;
}

.page-promotions__hero-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: left;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold title */
}

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #D3D3D3;
}

.page-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2239;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-promotions__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.page-promotions__overview,
.page-promotions__detail-list,
.page-promotions__cta,
.page-promotions__faq {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promotions__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #D3D3D3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__feature-item {
  background-color: #1A3A54;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions__feature-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__feature-item p {
  color: #D3D3D3;
}

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

.page-promotions__promotion-card {
  background-color: #1A3A54;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

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

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-description {
  color: #D3D3D3;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn--link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.95em;
  margin-right: 10px;
}

.page-promotions__btn--link:hover {
  background-color: #FFD700;
  color: #0A2239;
}

.page-promotions__btn--action {
  background-color: #008000; /* Green for action */
  color: #FFFFFF;
  border: 1px solid #008000;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-promotions__btn--action:hover {
  background-color: #006400;
}

.page-promotions__cta {
  background-color: #FFD700; /* Gold background for CTA */
  color: #0A2239;
  padding: 80px 20px;
}

.page-promotions__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2239;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #333;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__btn--lg {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promotions__cta .page-promotions__btn--primary {
  background-color: #0A2239;
  color: #FFD700;
  border-color: #0A2239;
}

.page-promotions__cta .page-promotions__btn--primary:hover {
  background-color: #1A3A54;
  border-color: #1A3A54;
}

.page-promotions__cta .page-promotions__btn--secondary {
  background-color: transparent;
  color: #0A2239;
  border-color: #0A2239;
}

.page-promotions__cta .page-promotions__btn--secondary:hover {
  background-color: #0A2239;
  color: #FFD700;
}

.page-promotions__faq {
  background-color: #0A2239;
  color: #F5F5F5;
}

.page-promotions__faq-item {
  background-color: #1A3A54;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item h3 {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__faq-item p {
  color: #D3D3D3;
}

.page-promotions__faq-item p a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__faq-item p a:hover {
  color: #E6C200;
}

@media (max-width: 992px) {
  .page-promotions__hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-promotions__hero-content {
    text-align: center;
    padding: 20px 0;
  }

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

  .page-promotions__hero-description {
    font-size: 1.1em;
  }

  .page-promotions__hero-actions {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 15px;
  }

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

  .page-promotions__hero-description {
    font-size: 1em;
  }

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

  .page-promotions__overview,
  .page-promotions__detail-list,
  .page-promotions__cta,
  .page-promotions__faq {
    padding: 40px 0;
  }

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

  .page-promotions__section-intro {
    font-size: 1em;
  }

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

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

  .page-promotions__cta-title {
    font-size: 2.2em;
  }

  .page-promotions__cta-description {
    font-size: 1.1em;
  }

  .page-promotions__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn--lg {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__hero-actions .page-promotions__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-promotions__feature-item h3 {
    font-size: 1.3em;
  }

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

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