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

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

.page-latest-promotions__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

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

.page-latest-promotions__hero-image {
  position: absolute;
  bottom: -20px;
  right: 0;
  opacity: 0.2;
  width: 300px;
  height: auto;
  z-index: 0;
}

.page-latest-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-latest-promotions__btn--primary {
  background-color: #ffc107;
  color: #333;
  font-size: 1.1em;
  border: 2px solid #ffc107;
}

.page-latest-promotions__btn--primary:hover {
  background-color: #e0a800;
  color: #fff;
  border-color: #e0a800;
}

.page-latest-promotions__btn--secondary {
  background-color: #007bff;
  color: #fff;
  font-size: 0.9em;
  border: 1px solid #007bff;
}

.page-latest-promotions__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-latest-promotions__btn--large {
  padding: 15px 35px;
  font-size: 1.3em;
}

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

.page-latest-promotions__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-latest-promotions__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-latest-promotions__why-choose p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

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

.page-latest-promotions__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-latest-promotions__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-latest-promotions__promo-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-latest-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-latest-promotions__promo-item h3 {
  font-size: 1.3em;
  color: #007bff;
  margin: 20px 20px 10px;
}

.page-latest-promotions__promo-description {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-latest-promotions__promo-item .page-latest-promotions__btn--secondary {
  margin: 0 20px 20px;
  align-self: flex-start;
}

.page-latest-promotions__how-to-claim ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-bottom: 40px;
}

.page-latest-promotions__how-to-claim li {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
}

.page-latest-promotions__how-to-claim li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #ffc107;
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-latest-promotions__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-latest-promotions__process-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-latest-promotions__tips-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #ffc107;
}

.page-latest-promotions__tip-title {
  font-size: 1.3em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-latest-promotions__strategy-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-latest-promotions__platform-overview p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
}

.page-latest-promotions__platform-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.page-latest-promotions__faq-question {
  font-size: 1.2em;
  color: #007bff;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

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

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

.page-latest-promotions__faq-answer {
  padding: 0 20px 20px;
  margin: 0;
  color: #555;
  display: none;
}

.page-latest-promotions__faq-answer.active {
  display: block;
}

.page-latest-promotions__cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-latest-promotions__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-latest-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-latest-promotions__hero-title {
    font-size: 2.8em;
  }

  .page-latest-promotions__section-title {
    font-size: 2em;
  }

  .page-latest-promotions__features-grid,
  .page-latest-promotions__promo-list,
  .page-latest-promotions__tips-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-latest-promotions__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-latest-promotions__hero {
    padding: 60px 0;
  }

  .page-latest-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-latest-promotions__hero-description {
    font-size: 1em;
  }

  .page-latest-promotions__section {
    padding: 40px 0;
  }

  .page-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-latest-promotions__feature-title,
  .page-latest-promotions__promo-item h3,
  .page-latest-promotions__step-title,
  .page-latest-promotions__tip-title {
    font-size: 1.2em;
  }

  .page-latest-promotions__btn--primary,
  .page-latest-promotions__btn--secondary {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-latest-promotions__btn--large {
    padding: 12px 30px;
    font-size: 1.1em;
  }

  .page-latest-promotions__hero-image {
    display: none; /* Hide on smaller screens */
  }

  .page-latest-promotions__how-to-claim li {
    padding-left: 60px;
  }

  .page-latest-promotions__how-to-claim li::before {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    left: 15px;
    top: 25px;
  }

  .page-latest-promotions__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-latest-promotions__hero-title {
    font-size: 1.8em;
  }

  .page-latest-promotions__section-title {
    font-size: 1.5em;
  }

  .page-latest-promotions__features-grid,
  .page-latest-promotions__promo-list,
  .page-latest-promotions__tips-list {
    grid-template-columns: 1fr;
  }

  .page-latest-promotions__cta-title {
    font-size: 1.8em;
  }
}