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

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

.page-index-top-promotions__hero-section {
  background: linear-gradient(135deg, #FFD700, #000080);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-top-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-top-promotions__hero-title .highlight {
  color: #FFD700;
}

.page-index-top-promotions__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-top-promotions__hero-buttons .page-index-top-promotions__btn {
  margin: 0 10px;
}

.page-index-top-promotions__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-top-promotions__section-title .highlight {
  color: #FFD700;
}

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

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

.page-index-top-promotions__promotions-overview,
.page-index-top-promotions__how-to-participate,
.page-index-top-promotions__why-jun88,
.page-index-top-promotions__faq-section,
.page-index-top-promotions__call-to-action {
  padding: 80px 0;
}

.page-index-top-promotions__promotions-overview {
  background-color: #fff;
}

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

.page-index-top-promotions__promotion-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-index-top-promotions__promotion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-top-promotions__card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-top-promotions__card-title {
  font-size: 1.5em;
  color: #000080;
  margin: 0 15px 15px 15px;
}

.page-index-top-promotions__card-text {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px 15px;
}

.page-index-top-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

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

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

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

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

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

.page-index-top-promotions__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-index-top-promotions__how-to-participate {
  background-color: #e8f0fe;
}

.page-index-top-promotions__steps-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.page-index-top-promotions__steps-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.page-index-top-promotions__step-icon {
  width: 70px;
  height: 70px;
  margin: -65px auto 20px auto;
  background-color: #000080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-top-promotions__step-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); /* This is allowed only for icons to make them white */
}

.page-index-top-promotions__steps-list h3 {
  color: #000080;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-top-promotions__steps-list p {
  color: #555;
}

.page-index-top-promotions__steps-list p a {
  color: #000080;
  text-decoration: underline;
}

.page-index-top-promotions__steps-list p a:hover {
  color: #FFD700;
}

.page-index-top-promotions__cta-text {
  font-size: 1.2em;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #000080;
}

.page-index-top-promotions__cta-text .highlight {
  color: #FFD700;
}

.page-index-top-promotions__why-jun88 {
  background-color: #fcfcfc;
}

.page-index-top-promotions__advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-index-top-promotions__advantages-list li {
  background-color: #fff;
  padding: 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1em;
  color: #333;
}

.page-index-top-promotions__advantages-list li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(49%) sepia(85%) saturate(740%) hue-rotate(359deg) brightness(101%) contrast(101%); /* This is allowed only for icons to make them gold */
}

.page-index-top-promotions__advantages-list li strong {
  color: #000080;
}

.page-index-top-promotions__faq-section {
  background-color: #f4f7f6;
}

.page-index-top-promotions__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-index-top-promotions__faq-question {
  padding: 20px 25px;
  margin: 0;
  font-size: 1.2em;
  color: #000080;
  cursor: pointer;
  background-color: #fcfcfc;
  border-bottom: 1px solid #eee;
  position: relative;
}

.page-index-top-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-top-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-top-promotions__faq-answer {
  padding: 20px 25px;
  margin: 0;
  color: #555;
  display: none; /* Hidden by default */
}

.page-index-top-promotions__faq-answer a {
  color: #000080;
  text-decoration: underline;
}

.page-index-top-promotions__faq-answer a:hover {
  color: #FFD700;
}

.page-index-top-promotions__call-to-action {
  background: linear-gradient(to right, #000080, #000050);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-index-top-promotions__call-to-action .page-index-top-promotions__section-title {
  color: #fff;
}

.page-index-top-promotions__call-to-action .page-index-top-promotions__section-title::after {
  background-color: #FFD700;
}

.page-index-top-promotions__call-to-action .page-index-top-promotions__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-index-top-promotions__call-to-action .page-index-top-promotions__btn {
  margin: 0 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-top-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-top-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-index-top-promotions__section-title {
    font-size: 2em;
  }
  .page-index-top-promotions__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .page-index-top-promotions__promotion-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-top-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-top-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-top-promotions__hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-index-top-promotions__hero-buttons .page-index-top-promotions__btn {
    margin: 10px 0;
    width: 80%;
  }
  .page-index-top-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-index-top-promotions__steps-list {
    grid-template-columns: 1fr;
  }
  .page-index-top-promotions__advantages-list {
    grid-template-columns: 1fr;
  }
  .page-index-top-promotions__call-to-action .page-index-top-promotions__btn {
    width: 90%;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-index-top-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-top-promotions__section-title {
    font-size: 1.6em;
  }
  .page-index-top-promotions__hero-section,
  .page-index-top-promotions__promotions-overview,
  .page-index-top-promotions__how-to-participate,
  .page-index-top-promotions__why-jun88,
  .page-index-top-promotions__faq-section,
  .page-index-top-promotions__call-to-action {
    padding: 50px 0;
  }
}