.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F5F5F5; /* Light text on dark background for general content */
  line-height: 1.6;
  background-color: #0E1A29; /* Darker background for overall page */
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #1A2E44, #0E1A29); /* Dark blue to even darker blue */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #FFD700;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__section {
  padding: 60px 0;
  background-color: #1A2E44; /* Primary dark blue for sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__section:nth-of-type(even) {
  background-color: #122233; /* Slightly different dark shade for alternation */
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-promotions__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promotions__text-content {
  flex: 1;
  min-width: 300px;
}

.page-promotions__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #F5F5F5;
}

.page-promotions__image-right, .page-promotions__image-left {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__image-left {
  order: -1; /* For alternating image/text layout */
}

@media (max-width: 768px) {
  .page-promotions__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__image-right, .page-promotions__image-left {
    max-width: 100%;
    order: unset;
  }
}

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

.page-promotions__promo-card {
  background-color: #0E1A29; /* Darker background for cards */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

.page-promotions__button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark text on gold */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-promotions__button--primary {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-promotions__button--primary:hover {
  background-color: #E6C200;
}

.page-promotions__button--secondary {
  background-color: #1A2E44;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__button--secondary:hover {
  background-color: #2F4F6F;
  color: #FFD700;
}

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

.page-promotions__button--outline:hover {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-promotions__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-promotions__steps-list li {
  background-color: #0E1A29;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.1em;
  color: #F5F5F5;
  border-left: 5px solid #FFD700;
}

.page-promotions__steps-list li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-promotions__link-inline {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions__link-inline:hover {
  color: #E6C200;
}

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

.page-promotions__list li {
  background-color: #0E1A29;
  padding: 15px 25px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 1em;
  color: #F5F5F5;
  border-left: 4px solid #1A2E44;
}

.page-promotions__list li strong {
  color: #FFD700;
  display: block;
  margin-bottom: 5px;
}

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

.page-promotions__detail-card {
  background-color: #0E1A29;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #1A2E44;
}

.page-promotions__detail-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.page-promotions__detail-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promotions__detail-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__detail-title a:hover {
  text-decoration: underline;
  color: #E6C200;
}

.page-promotions__detail-description {
  font-size: 0.95em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-promotions__cta-final {
  background-color: #1A2E44;
  padding: 70px 0;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.highlight-text {
  color: #FFD700;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0 30px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__promo-grid, .page-promotions__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__button--primary, .page-promotions__button--outline {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__steps-list li, .page-promotions__list li {
    font-size: 0.95em;
    padding: 15px 20px;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__button--primary, .page-promotions__button--outline {
    width: 90%;
  }
}