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

.page-index-latest-promotions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-latest-promotions .text-center {
  text-align: center;
}

.page-index-latest-promotions .mt-5 {
  margin-top: 3rem;
}

.page-index-latest-promotions .bg-light {
  background-color: #f1f1f1;
}

.page-index-latest-promotions .bg-dark {
  background-color: #343a40;
  color: #f8f9fa;
}

.page-index-latest-promotions .bg-primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-index-latest-promotions .hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-index-latest-promotions .hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.5;
  color: #e9ecef;
}

.page-index-latest-promotions .hero-cta-group .btn {
  margin: 0 10px;
  padding: 15px 30px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-index-latest-promotions .btn-primary {
  background-color: #ffc107;
  border: 1px solid #ffc107;
  color: #333;
}

.page-index-latest-promotions .btn-primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #000;
}

.page-index-latest-promotions .btn-secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.page-index-latest-promotions .btn-secondary:hover {
  background-color: #ffffff;
  color: #007bff;
}

.page-index-latest-promotions .btn-light {
  background-color: #f8f9fa;
  border: 1px solid #f8f9fa;
  color: #007bff;
}

.page-index-latest-promotions .btn-light:hover {
  background-color: #e2e6ea;
  border-color: #e2e6ea;
}

.page-index-latest-promotions .section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-index-latest-promotions .bg-dark .section-title,
.page-index-latest-promotions .bg-dark .section-description {
  color: #ffffff;
}

.page-index-latest-promotions .bg-primary .section-title,
.page-index-latest-promotions .bg-primary .section-description {
  color: #ffffff;
}

.page-index-latest-promotions .promotions-overview,
.page-index-latest-promotions .featured-promotions,
.page-index-latest-promotions .how-to-claim,
.page-index-latest-promotions .app-promo,
.page-index-latest-promotions .faq-section,
.page-index-latest-promotions .final-cta {
  padding: 80px 0;
}

.page-index-latest-promotions .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-latest-promotions .feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions .feature-item:hover {
  transform: translateY(-10px);
}

.page-index-latest-promotions .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

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

.page-index-latest-promotions .feature-text {
  color: #666;
}

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

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

.page-index-latest-promotions .promotion-card:hover {
  transform: translateY(-10px);
}

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

.page-index-latest-promotions .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions .card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions .card-text {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-promotions .card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-latest-promotions .card-features li {
  margin-bottom: 8px;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.page-index-latest-promotions .card-features li::before {
  content: '✔';
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 0;
}

.page-index-latest-promotions .btn-sm {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

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

.page-index-latest-promotions .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-index-latest-promotions .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-index-latest-promotions .step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-latest-promotions .step-text {
  color: #666;
}

.page-index-latest-promotions .step-text a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions .step-text a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions .app-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
}

.page-index-latest-promotions .app-content {
  max-width: 600px;
}

.page-index-latest-promotions .app-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-index-latest-promotions .app-features-list li {
  color: #e9ecef;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  font-size: 1.1em;
}

.page-index-latest-promotions .app-features-list li::before {
  content: '★';
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-index-latest-promotions .app-image-wrapper {
  max-width: 350px;
}

.page-index-latest-promotions .app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions .faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-latest-promotions .accordion-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-latest-promotions .accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: #f1f1f1;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  color: #007bff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-index-latest-promotions .accordion-header:hover {
  background-color: #e9ecef;
}

.page-index-latest-promotions .accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-index-latest-promotions .accordion-header.active::after {
  content: '-';
}

.page-index-latest-promotions .accordion-content {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-latest-promotions .accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-index-latest-promotions .accordion-content p {
  margin: 0;
  color: #555;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-index-latest-promotions .app-promo {
    flex-direction: row;
    text-align: left;
  }

  .page-index-latest-promotions .app-content {
    text-align: left;
  }

  .page-index-latest-promotions .app-features-list {
    margin-left: 0;
  }

  .page-index-latest-promotions .app-image-wrapper {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.5em;
  }

  .page-index-latest-promotions .hero-description {
    font-size: 1em;
  }

  .page-index-latest-promotions .hero-cta-group .btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }

  .page-index-latest-promotions .section-title {
    font-size: 2em;
  }

  .page-index-latest-promotions .app-promo {
    flex-direction: column;
  }

  .page-index-latest-promotions .app-image-wrapper {
    order: -1; /* Move image above text on mobile */
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2em;
  }

  .page-index-latest-promotions .section-title {
    font-size: 1.8em;
  }

  .page-index-latest-promotions .btn-lg {
    font-size: 1em;
    padding: 12px 25px;
  }
}