/* style/index-top-promotions.css */
.page-index-top-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F0F0F0; /* Light grey for general text on dark background */
  background-color: #0d124d; /* Darker variant of main color for overall background */
}

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

.page-index-top-promotions__hero-section {
  background: linear-gradient(135deg, #1A237E, #0d124d); /* Main color to darker variant */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 5px solid #FFD700; /* Auxiliary color for accent */
}

.page-index-top-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-top-promotions__highlight {
  color: #FFFFFF;
}

.page-index-top-promotions__hero-subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0;
}

.page-index-top-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-index-top-promotions__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A237E; /* Main color for text */
}

.page-index-top-promotions__btn--primary:hover {
  background-color: #e5c100; /* Slightly darker auxiliary */
  transform: translateY(-2px);
}

.page-index-top-promotions__btn--secondary {
  background-color: #1A237E; /* Main color */
  color: #FFD700; /* Auxiliary color for text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-index-top-promotions__btn--secondary:hover {
  background-color: #0d124d; /* Darker variant of main color */
  transform: translateY(-2px);
}

.page-index-top-promotions__btn--link {
  background: none;
  color: #FFD700; /* Auxiliary color */
  padding: 8px 15px;
  border: 1px solid #FFD700;
  margin-top: 10px;
}

.page-index-top-promotions__btn--link:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-index-top-promotions__section {
  padding: 60px 0;
  background-color: #13195c; /* Slightly lighter than overall background */
  margin-bottom: 20px;
}

.page-index-top-promotions__section:nth-of-type(even) {
  background-color: #1A237E; /* Main color for alternating sections */
}

.page-index-top-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-index-top-promotions__promo-card {
  background-color: #0d124d; /* Darker variant of main color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-top-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-index-top-promotions__promo-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-index-top-promotions__promo-title {
  font-size: 1.6em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-top-promotions__promo-text {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-top-promotions__promo-detail-card {
  background-color: #0d124d; /* Darker variant of main color */
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700; /* Auxiliary color for accent */
}

.page-index-top-promotions__promo-detail-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.page-index-top-promotions__detail-icon {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #FFD700; /* Auxiliary color */
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-top-promotions__detail-title {
  font-size: 2em;
  color: #FFD700; /* Auxiliary color */
  font-weight: bold;
}

.page-index-top-promotions__detail-description {
  font-size: 1.1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-index-top-promotions__detail-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-index-top-promotions__detail-list li {
  background-color: #1A237E; /* Main color */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: #E0E0E0;
  font-size: 1em;
}

.page-index-top-promotions__detail-list li strong {
  color: #FFD700; /* Auxiliary color */
  margin-right: 10px;
}

.page-index-top-promotions__detail-list li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-index-top-promotions__how-to-claim {
  background-color: #1A237E; /* Main color */
}

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

.page-index-top-promotions__step-card {
  background-color: #0d124d; /* Darker variant of main color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-top-promotions__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700; /* Auxiliary color */
  background-color: #1A237E; /* Main color */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border: 3px solid #FFD700;
}

.page-index-top-promotions__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-top-promotions__step-text {
  font-size: 1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-index-top-promotions__faq {
  background-color: #13195c;
}

.page-index-top-promotions__faq-item {
  background-color: #0d124d; /* Darker variant of main color */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-index-top-promotions__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-index-top-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  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 {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 0px;
}

.page-index-top-promotions__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 10px 0px 0;
}

.page-index-top-promotions__cta-bottom {
  background: linear-gradient(45deg, #1A237E, #0d124d); /* Main color to darker variant */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
  border-top: 5px solid #FFD700;
}

.page-index-top-promotions__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-top-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-top-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-top-promotions__section-title {
    font-size: 2em;
  }
  .page-index-top-promotions__promo-detail-card {
    padding: 30px;
  }
  .page-index-top-promotions__detail-title {
    font-size: 1.8em;
  }
  .page-index-top-promotions__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-top-promotions__hero-section {
    padding: 80px 0;
  }
  .page-index-top-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-top-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-index-top-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-top-promotions__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-index-top-promotions__promo-grid,
  .page-index-top-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-top-promotions__promo-detail-header {
    flex-direction: column;
    text-align: center;
  }
  .page-index-top-promotions__detail-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-index-top-promotions__detail-title {
    font-size: 1.5em;
  }
  .page-index-top-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-index-top-promotions__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-index-top-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-index-top-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-top-promotions__btn {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
  .page-index-top-promotions__btn--secondary {
    margin-top: 0;
  }
  .page-index-top-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-top-promotions__promo-card, .page-index-top-promotions__promo-detail-card, .page-index-top-promotions__step-card, .page-index-top-promotions__faq-item {
    padding: 20px;
  }
  .page-index-top-promotions__detail-title {
    font-size: 1.3em;
  }
  .page-index-top-promotions__cta-title {
    font-size: 1.5em;
  }
  .page-index-top-promotions__cta-description {
    font-size: 1em;
  }
}