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

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

.page-index-latest-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #0A2342;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-index-latest-promotions__section-subtitle {
  font-size: 18px;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #0A2342, #E0B400);
  color: #ffffff;
}

.page-index-latest-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-latest-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-index-latest-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-latest-promotions__hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E0B400;
  color: #0A2342;
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-index-latest-promotions__cta-button:hover {
  background: #ffc107;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions__featured-promotions {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-index-latest-promotions__promo-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.page-index-latest-promotions__promo-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.page-index-latest-promotions__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-latest-promotions__card-description {
  font-size: 16px;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-index-latest-promotions__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #0A2342;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
}

.page-index-latest-promotions__btn-primary:hover {
  background: #1a3a60;
}

.page-index-latest-promotions__how-to-claim {
  padding: 80px 0;
  background-color: #0A2342;
  color: #ffffff;
}

.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__section-title,
.page-index-latest-promotions__how-to-claim .page-index-latest-promotions__section-subtitle {
  color: #ffffff;
}

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

.page-index-latest-promotions__step-item {
  background: #1a3a60;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #E0B400;
  color: #0A2342;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-index-latest-promotions__step-title {
  font-size: 22px;
  font-weight: 700;
  color: #E0B400;
  margin-bottom: 15px;
}

.page-index-latest-promotions__step-description {
  font-size: 16px;
  color: #cccccc;
}

.page-index-latest-promotions__step-description a {
  color: #E0B400;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-index-latest-promotions__step-description a:hover {
  color: #ffc107;
}

.page-index-latest-promotions__terms-conditions {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.page-index-latest-promotions__terms-list {
  list-style: disc inside;
  margin: 30px auto;
  padding-left: 20px;
  max-width: 800px;
  font-size: 16px;
  color: #555555;
}

.page-index-latest-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-index-latest-promotions__btn-secondary {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 12px 30px;
  background: #ffffff;
  color: #0A2342;
  text-decoration: none;
  border: 2px solid #0A2342;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-latest-promotions__btn-secondary:hover {
  background: #0A2342;
  color: #ffffff;
}

.page-index-latest-promotions__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-index-latest-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-index-latest-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-index-latest-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  color: #444444;
}

.page-index-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #E0B400;
  color: #0A2342;
  border: 1px solid #E0B400;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-index-latest-promotions__faq-question:hover {
  background: #ffc107;
  border-color: #ffc107;
}

.page-index-latest-promotions__faq-question:active {
  background: #ffdb58;
}

.page-index-latest-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #0A2342;
}

.page-index-latest-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #0A2342;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-toggle {
  color: #0A2342;
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 42px;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 18px;
  }
  .page-index-latest-promotions__section-title {
    font-size: 32px;
  }
  .page-index-latest-promotions__section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-index-latest-promotions__container {
    padding: 0 15px;
  }
  .page-index-latest-promotions__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-index-latest-promotions__cta-button {
    padding: 15px 35px;
    font-size: 18px;
    width: 100% !important;
    max-width: 300px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-index-latest-promotions__featured-promotions,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__terms-conditions,
  .page-index-latest-promotions__faq-section {
    padding: 50px 0;
  }
  .page-index-latest-promotions__section-title {
    font-size: 28px;
    padding-top: 20px;
  }
  .page-index-latest-promotions__section-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-index-latest-promotions__promotions-grid,
  .page-index-latest-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-index-latest-promotions__promo-image {
    height: 200px;
  }
  .page-index-latest-promotions__card-title {
    font-size: 20px;
  }
  .page-index-latest-promotions__card-description {
    font-size: 15px;
  }
  .page-index-latest-promotions__btn-primary,
  .page-index-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 250px !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-index-latest-promotions__step-item {
    padding: 25px;
  }
  .page-index-latest-promotions__step-title {
    font-size: 20px;
  }
  .page-index-latest-promotions__step-description {
    font-size: 15px;
  }
  .page-index-latest-promotions__terms-list {
    font-size: 15px;
    padding-left: 15px;
  }
  .page-index-latest-promotions__faq-question {
    padding: 15px;
  }
  .page-index-latest-promotions__faq-question h3 {
    font-size: 16px;
  }
  .page-index-latest-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .page-index-latest-promotions__faq-item.active .page-index-latest-promotions__faq-answer {
    padding: 15px !important;
  }
  .page-index-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-index-latest-promotions__section,
  .page-index-latest-promotions__card,
  .page-index-latest-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-latest-promotions__cta-buttons,
  .page-index-latest-promotions__button-group,
  .page-index-latest-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-index-latest-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}