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

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

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

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

.page-index-latest-promotions .hero-section {
  background: linear-gradient(135deg, #0A2463, #3A5C9B);
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions .hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-index-latest-promotions .hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-index-latest-promotions .hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-index-latest-promotions .hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-index-latest-promotions .hero-actions .btn {
  margin: 10px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.page-index-latest-promotions .hero-actions .btn-primary {
  background-color: #E0B94A;
  color: #0A2463;
  border: 2px solid #E0B94A;
}

.page-index-latest-promotions .hero-actions .btn-primary:hover {
  background-color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

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

.page-index-latest-promotions .hero-actions .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-index-latest-promotions .hero-image-wrapper {
  width: 100%;
  max-width: 600px;
  margin-top: 40px;
  z-index: 1;
}

.page-index-latest-promotions .hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-index-latest-promotions .section-description {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions .highlight {
  color: #E0B94A;
}

.page-index-latest-promotions .offers-section, .page-index-latest-promotions .how-to-claim-section, .page-index-latest-promotions .terms-section, .page-index-latest-promotions .why-reputable-section, .page-index-latest-promotions .tips-section, .page-index-latest-promotions .faq-section {
  padding: 80px 0;
}

.page-index-latest-promotions .offers-section {
  background-color: #F8F9FA;
}

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

.page-index-latest-promotions .offer-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-latest-promotions .offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions .offer-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-latest-promotions .offer-title {
  font-size: 1.5rem;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-index-latest-promotions .offer-card .btn-link {
  color: #E0B94A;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-latest-promotions .offer-card .btn-link:hover {
  color: #FFD700;
}

.page-index-latest-promotions .how-to-claim-section {
  background-color: #FFFFFF;
}

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

.page-index-latest-promotions .step-card {
  background-color: #FDFDFD;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-top: 70px;
}

.page-index-latest-promotions .step-number {
  width: 50px;
  height: 50px;
  background-color: #0A2463;
  color: #E0B94A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #E0B94A;
}

.page-index-latest-promotions .step-title {
  font-size: 1.6rem;
  color: #0A2463;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions .step-text {
  color: #666;
  margin-bottom: 20px;
}

.page-index-latest-promotions .step-text .keyword {
  font-weight: bold;
  color: #0A2463;
}

.page-index-latest-promotions .step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions .btn-large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-index-latest-promotions .terms-section {
  background-color: #F8F9FA;
}

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

.page-index-latest-promotions .terms-item {
  background-color: #FFFFFF;
  border-left: 5px solid #E0B94A;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions .terms-heading {
  font-size: 1.4rem;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-index-latest-promotions .terms-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 10px;
  margin: 50px auto 0 auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions .why-reputable-section {
  background-color: #FFFFFF;
}

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

.page-index-latest-promotions .advantage-item {
  text-align: center;
  padding: 30px;
  background-color: #FDFDFD;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-latest-promotions .advantage-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-index-latest-promotions .advantage-title {
  font-size: 1.4rem;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-index-latest-promotions .tips-section {
  background-color: #F8F9FA;
}

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

.page-index-latest-promotions .tip-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-index-latest-promotions .tip-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #E0B94A;
}

.page-index-latest-promotions .tip-title {
  font-size: 1.5rem;
  color: #0A2463;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-index-latest-promotions .faq-section {
  background-color: #FFFFFF;
}

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

.page-index-latest-promotions .faq-item {
  background-color: #FDFDFD;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-index-latest-promotions .faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-latest-promotions .faq-question {
  font-size: 1.3rem;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: bold;
}

.page-index-latest-promotions .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: #E0B94A;
}

.page-index-latest-promotions .faq-question.active::after {
  content: '-';
}

.page-index-latest-promotions .faq-answer {
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #EEE;
  margin-top: 15px;
}

.page-index-latest-promotions .faq-question.active + .faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.8rem;
  }
  .page-index-latest-promotions .hero-description {
    font-size: 1.1rem;
  }
  .page-index-latest-promotions .section-title {
    font-size: 2rem;
  }
  .page-index-latest-promotions .hero-section .container {
    flex-direction: column;
  }
  .page-index-latest-promotions .hero-image-wrapper {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.2rem;
  }
  .page-index-latest-promotions .hero-description {
    font-size: 1rem;
  }
  .page-index-latest-promotions .hero-actions .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-index-latest-promotions .section-title {
    font-size: 1.8rem;
  }
  .page-index-latest-promotions .section-description {
    font-size: 0.95rem;
  }
  .page-index-latest-promotions .offers-grid, .page-index-latest-promotions .claim-steps, .page-index-latest-promotions .terms-content, .page-index-latest-promotions .reputable-advantages, .page-index-latest-promotions .tips-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions .step-card {
    padding-top: 60px;
  }
  .page-index-latest-promotions .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    top: -22px;
  }
  .page-index-latest-promotions .advantage-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions .hero-section {
    padding: 60px 0;
  }
  .page-index-latest-promotions .hero-title {
    font-size: 1.8rem;
  }
  .page-index-latest-promotions .hero-description {
    font-size: 0.9rem;
  }
  .page-index-latest-promotions .hero-actions .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .page-index-latest-promotions .section-title {
    font-size: 1.5rem;
  }
  .page-index-latest-promotions .offers-section, .page-index-latest-promotions .how-to-claim-section, .page-index-latest-promotions .terms-section, .page-index-latest-promotions .why-reputable-section, .page-index-latest-promotions .tips-section, .page-index-latest-promotions .faq-section {
    padding: 50px 0;
  }
  .page-index-latest-promotions .offer-card, .page-index-latest-promotions .step-card, .page-index-latest-promotions .terms-item, .page-index-latest-promotions .advantage-item, .page-index-latest-promotions .tip-item, .page-index-latest-promotions .faq-item {
    padding: 20px;
  }
  .page-index-latest-promotions .faq-question {
    font-size: 1.1rem;
  }
}