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

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #2a4a8d 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__text {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  font-size: 1.1em;
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promotions__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  font-size: 1em;
  border: 2px solid #0A2463;
}

.page-promotions__btn--secondary:hover {
  background-color: #1a3c7c;
  border-color: #1a3c7c;
}

.page-promotions__btn--link {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
  padding: 8px 15px;
  font-size: 0.95em;
}

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

/* Why Choose Section */
.page-promotions__why-choose {
  background-color: #ffffff;
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

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

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

.page-promotions__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-promotions__card-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions__card-text {
  font-size: 0.95em;
  color: #555;
}

/* Featured Promotions Section */
.page-promotions__featured-promos {
  background-color: #f0f2f5;
}

.page-promotions__promo-item {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-promotions__promo-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-promotions__promo-content {
  flex: 1;
  padding: 40px;
}

.page-promotions__promo-image-wrapper {
  flex: 1;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
}

.page-promotions__promo-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions__promo-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-promotions__promo-description {
  font-size: 1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  text-align: justify;
}

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

/* Guide Section */
.page-promotions__guide {
  background-color: #f0f2f5;
}

.page-promotions__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions__step-list li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 70px;
}

.page-promotions__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A2463;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.3em;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

.page-promotions__step-list p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.7;
}

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

.page-promotions__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__accordion-header {
  background-color: #0A2463;
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
  background-color: #1a3c7c;
}

.page-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content.open {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-promotions__accordion-content p {
  margin: 0;
  color: #555;
  line-height: 1.7;
}

/* Detail Pages Section */
.page-promotions__detail-pages {
  background-color: #f0f2f5;
}

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

.page-promotions__detail-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 5px solid #FFD700;
}

.page-promotions__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__detail-card-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promotions__detail-card-title a {
  text-decoration: none;
  color: inherit;
}

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

.page-promotions__detail-card-description {
  font-size: 0.95em;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Conclusion Section */
.page-promotions__conclusion {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

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

.page-promotions__conclusion .page-promotions__text {
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-promotions__conclusion .page-promotions__btn--primary {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__promo-item {
    flex-direction: column;
  }
  .page-promotions__promo-item:nth-child(even) {
    flex-direction: column;
  }
  .page-promotions__promo-content {
    padding: 30px;
  }
  .page-promotions__promo-image-wrapper {
    min-height: 200px;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .page-promotions__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions__promo-title {
    font-size: 1.5em;
  }
  .page-promotions__promo-content {
    padding: 25px;
  }
  .page-promotions__card {
    padding: 25px;
  }
  .page-promotions__step-list li {
    padding-left: 60px;
  }
  .page-promotions__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    left: 20px;
  }
  .page-promotions__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.5em;
  }
  .page-promotions__section-title {
    font-size: 1.4em;
  }
  .page-promotions__promo-title {
    font-size: 1.3em;
  }
  .page-promotions__promo-content {
    padding: 20px;
  }
  .page-promotions__grid,
  .page-promotions__detail-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__card {
    padding: 20px;
  }
  .page-promotions__step-list li {
    padding-left: 50px;
  }
  .page-promotions__step-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
    left: 15px;
  }
  .page-promotions__accordion-header {
    font-size: 0.95em;
    padding: 12px 15px;
  }
  .page-promotions__btn {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}