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

.page-promotions a {
  color: #0A2463;
  text-decoration: none;
}

.page-promotions a:hover {
  text-decoration: underline;
  color: #E3B505;
}

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

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #0A2463;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E3B505;
  border-radius: 2px;
}

.page-promotions__section-intro {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #0A2463, #3C5B97);
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E3B505;
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-promotions__hero-description a {
  color: #E3B505;
  font-weight: bold;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin: 0 10px;
  white-space: nowrap;
}

.page-promotions__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
  border: 2px solid #E3B505;
}

.page-promotions__btn--primary:hover {
  background-color: #d1a404;
  border-color: #d1a404;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
  background-color: #0A2463;
  color: #fff;
  border: 2px solid #0A2463;
}

.page-promotions__btn--small:hover {
  background-color: #E3B505;
  border-color: #E3B505;
  color: #0A2463;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Introduction Section */
.page-promotions__introduction {
  background-color: #fff;
}

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

.page-promotions__introduction p {
  max-width: 800px;
  margin-bottom: 20px;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
}

.page-promotions__list li {
  background-color: #f0f2f5;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  flex: 1 1 calc(50% - 20px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-width: 280px;
}

.page-promotions__list li i {
  color: #E3B505;
  font-size: 1.8em;
  margin-top: 5px;
}

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

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

/* Types Section */
.page-promotions__types {
  background-color: #f0f2f5;
}

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

.page-promotions__card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin: 20px 15px 10px;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 25px;
}

/* Details Section */
.page-promotions__details {
  background-color: #fff;
}

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

.page-promotions__detail-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.page-promotions__detail-title {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promotions__detail-title a {
  color: #0A2463;
  font-weight: bold;
}

.page-promotions__detail-title a:hover {
  color: #E3B505;
}

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

.page-promotions__cta-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-promotions__cta-bottom p {
  font-size: 1.2em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-promotions__cta-bottom p a {
  color: #E3B505;
  font-weight: bold;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: #f0f2f5;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
  text-align: left;
}

.page-promotions__steps-list li {
  background-color: #fff;
  border-left: 5px solid #E3B505;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.page-promotions__steps-list li a {
  font-weight: bold;
}

/* Terms Section */
.page-promotions__terms {
  background-color: #fff;
}

.page-promotions__terms .page-promotions__list li {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  box-shadow: none;
}

.page-promotions__terms .page-promotions__list li i {
  color: #0A2463;
}

/* FAQ Section */
.page-promotions__faq {
  background-color: #f0f2f5;
}

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

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-promotions__faq-question a {
  color: #0A2463;
  font-weight: bold;
}

.page-promotions__faq-question a:hover {
  color: #E3B505;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555;
  padding-left: 10px;
  border-left: 3px solid #E3B505;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__list li {
    flex: 1 1 calc(100% - 20px);
  }
}

@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__btn {
    padding: 12px 25px;
    font-size: 0.9em;
    margin: 10px 5px;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__list-details {
    grid-template-columns: 1fr;
  }
  .page-promotions__list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions__list li i {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__list li {
    padding: 15px;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__detail-title {
    font-size: 1.1em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
}