.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  position: relative;
  z-index: 1;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

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

.page-promotions__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
}

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

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

.page-promotions__card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #003366;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-promotions__card-text {
  color: #666;
  margin-bottom: 25px;
}

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

.page-promotions__how-to-claim .page-promotions__steps-list li {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-promotions__how-to-claim .page-promotions__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__how-to-claim .page-promotions__steps-list p {
  color: #555;
  max-width: 700px;
  margin-bottom: 20px;
}

.page-promotions__how-to-claim .page-promotions__steps-list p a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions__how-to-claim .page-promotions__steps-list p a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-promotions__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__terms-list,
.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions__terms-list li,
.page-promotions__benefits-list li {
  background-color: #fefefe;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333;
  font-size: 1.1em;
}

.page-promotions__terms-list li .highlight,
.page-promotions__benefits-list li .highlight {
  color: #003366;
  font-weight: bold;
}

.page-promotions__cta {
  background: linear-gradient(135deg, #003366, #004d99);
  color: #fff;
  text-align: center;
}

.page-promotions__cta .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__cta .page-promotions__section-description {
  color: #eee;
}

.page-promotions__cta .page-promotions__section-description a {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions__cta .page-promotions__section-description a:hover {
  text-decoration: underline;
}

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

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

.page-promotions__related-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-top: 4px solid #FFD700;
  display: flex;
  flex-direction: column;
}

.page-promotions__related-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__related-title a {
  text-decoration: none;
  color: #003366;
}

.page-promotions__related-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

.text-bold {
  font-weight: bold;
}

.highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card {
    padding: 25px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__how-to-claim .page-promotions__step-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions__related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__card-icon {
    width: 60px;
    height: 60px;
  }
  .page-promotions__how-to-claim .page-promotions__step-title {
    font-size: 1.3em;
  }
  .page-promotions__terms-list li,
  .page-promotions__benefits-list li {
    font-size: 0.95em;
  }
}