/* style/index-latest-promos.css */
.page-index-latest-promos {
  font-family: 'Arial', sans-serif;
  color: #fff;
  background-color: #0d0d0d; /* Very dark background */
  line-height: 1.6;
}

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

.page-index-latest-promos__hero {
  background: linear-gradient(135deg, #1a1a1a, #000000);
  padding: 80px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
}

.page-index-latest-promos__hero-content {
  flex: 1 1 500px;
  max-width: 700px;
  padding: 20px;
}

.page-index-latest-promos__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-latest-promos__hero-description {
  font-size: 1.15em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-index-latest-promos__hero-image-wrapper {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-latest-promos__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promos__section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-index-latest-promos__section--dark {
  background-color: #000000;
}

.page-index-latest-promos__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-latest-promos__section-description {
  font-size: 1.1em;
  color: #d0d0d0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promos__list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 900px;
}

.page-index-latest-promos__list li {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.05em;
  color: #f0f0f0;
  border-left: 5px solid #FFD700;
}

.page-index-latest-promos__list li strong {
  color: #FFD700;
}

.page-index-latest-promos__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 20px auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

.page-index-latest-promos__promo-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-latest-promos__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-latest-promos__promo-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 0 20px 15px 20px;
  line-height: 1.3;
}

.page-index-latest-promos__promo-text {
  font-size: 0.95em;
  color: #d0d0d0;
  margin: 0 20px 15px 20px;
  flex-grow: 1;
}

.page-index-latest-promos__button {
  display: inline-block;
  background-color: #FFD700;
  color: #1a1a1a;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-index-latest-promos__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-latest-promos__button--primary {
  background-color: #8B0000;
  color: #fff;
}

.page-index-latest-promos__button--primary:hover {
  background-color: #a30000;
}

.page-index-latest-promos__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 40px auto;
}

.page-index-latest-promos__steps li {
  background-color: #2a2a2a;
  margin-bottom: 20px;
  padding: 25px 25px 25px 60px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.05em;
  color: #f0f0f0;
  position: relative;
  border-left: 5px solid #FFD700;
}

.page-index-latest-promos__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1a1a1a;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-index-latest-promos__steps li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-index-latest-promos__cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #8B0000, #4d0000); /* Dark red gradient */
}

.page-index-latest-promos__cta-content {
  position: relative;
  padding-bottom: 150px; /* Space for image */
}

.page-index-latest-promos__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-index-latest-promos__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promos__cta-image {
  position: absolute;
  bottom: -50px; /* Adjust to float slightly below */
  left: 50%;
  transform: translateX(-50%);
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-index-latest-promos__faq {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promos__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #8B0000;
}

.page-index-latest-promos__faq-question {
  font-size: 1.25em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-latest-promos__faq-answer {
  font-size: 1em;
  color: #d0d0d0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-latest-promos__hero {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-index-latest-promos__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-promos__hero-description {
    font-size: 1em;
  }
  .page-index-latest-promos__hero-content, .page-index-latest-promos__hero-image-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .page-index-latest-promos__section-title {
    font-size: 2em;
  }
  .page-index-latest-promos__section-description {
    font-size: 1em;
  }
  .page-index-latest-promos__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promos__cta-title {
    font-size: 2.2em;
  }
  .page-index-latest-promos__cta-description {
    font-size: 1.1em;
  }
  .page-index-latest-promos__cta-image {
    max-width: 300px;
    bottom: -30px;
  }
  .page-index-latest-promos__cta-content {
    padding-bottom: 120px;
  }
}

@media (max-width: 576px) {
  .page-index-latest-promos__hero-title {
    font-size: 2em;
  }
  .page-index-latest-promos__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promos__promo-title {
    font-size: 1.4em;
  }
  .page-index-latest-promos__button {
    padding: 10px 20px;
    font-size: 0.95em;
  }
  .page-index-latest-promos__steps li {
    padding: 20px 20px 20px 50px;
    font-size: 0.95em;
  }
  .page-index-latest-promos__steps li::before {
    left: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-index-latest-promos__cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-promos__cta-description {
    font-size: 1em;
  }
  .page-index-latest-promos__cta-image {
    max-width: 250px;
    bottom: -20px;
  }
  .page-index-latest-promos__cta-content {
    padding-bottom: 100px;
  }
  .page-index-latest-promos__faq-question {
    font-size: 1.1em;
  }
  .page-index-latest-promos__faq-answer {
    font-size: 0.9em;
  }
}