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

.page-index-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Desktop padding for fixed header */
}

.page-index-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-index-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  color: #ffffff;
}

.page-index-latest-promotions__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-latest-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-index-latest-promotions__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

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

.page-index-latest-promotions__intro-section,
.page-index-latest-promotions__how-to-claim,
.page-index-latest-promotions__why-choose,
.page-index-latest-promotions__app-download,
.page-index-latest-promotions__faq-section,
.page-index-latest-promotions__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #0A192F;
  margin-bottom: 20px;
}

.page-index-latest-promotions__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

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

.page-index-latest-promotions__promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page-index-latest-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-index-latest-promotions__card-content {
  padding: 25px;
}

.page-index-latest-promotions__card-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-index-latest-promotions__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
}

.page-index-latest-promotions__card-button {
  display: inline-block;
  background-color: #0A192F;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__card-button:hover {
  background-color: #1a345e;
}

.page-index-latest-promotions__how-to-claim {
  background-color: #eaf1f8;
}

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

.page-index-latest-promotions__step-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-index-latest-promotions__step-title {
  font-size: 1.3em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-index-latest-promotions__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-index-latest-promotions__step-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-index-latest-promotions__why-choose {
  background-color: #ffffff;
}

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

.page-index-latest-promotions__feature-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-index-latest-promotions__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px; /* Ensure images are not displayed smaller than 200px */
  min-height: 200px;
}

.page-index-latest-promotions__feature-title {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-index-latest-promotions__feature-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-index-latest-promotions__app-download {
  background-color: #0A192F;
  color: #ffffff;
  padding: 80px 0;
}

.page-index-latest-promotions__app-download .page-index-latest-promotions__section-title {
  color: #FFD700;
}

.page-index-latest-promotions__app-download .page-index-latest-promotions__section-description {
  color: #e0e0e0;
}

.page-index-latest-promotions__download-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions__download-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-index-latest-promotions__app-image {
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-index-latest-promotions__faq-section {
  background-color: #f4f4f4;
}

.page-index-latest-promotions__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

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

.page-index-latest-promotions__accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: #0A192F;
  color: #FFD700;
  border: none;
  text-align: left;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-latest-promotions__accordion-header:hover {
  background-color: #1a345e;
}

.page-index-latest-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-latest-promotions__accordion-content {
  padding: 0 25px;
  background-color: #fdfdfd;
  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 based on content */
  padding: 20px 25px;
}

.page-index-latest-promotions__accordion-content p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-index-latest-promotions__cta-section {
  background: linear-gradient(135deg, #0A192F, #1a345e);
  color: #ffffff;
  padding: 80px 0;
}

.page-index-latest-promotions__cta-section .page-index-latest-promotions__section-title {
  color: #FFD700;
}

.page-index-latest-promotions__cta-section .page-index-latest-promotions__section-description {
  color: #e0e0e0;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px); /* Mobile padding for fixed header */
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__section-description {
    font-size: 0.95em;
  }
  .page-index-latest-promotions__intro-section,
  .page-index-latest-promotions__how-to-claim,
  .page-index-latest-promotions__why-choose,
  .page-index-latest-promotions__app-download,
  .page-index-latest-promotions__faq-section,
  .page-index-latest-promotions__cta-section {
    padding: 40px 0;
  }
  .page-index-latest-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__card-image {
    height: 200px;
  }
  .page-index-latest-promotions__features-list {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__feature-icon {
    min-width: 150px; /* Adjust for mobile if needed, but maintain >= 200px */
    min-height: 150px;
    width: 150px; /* Example, ensure it's not smaller than 200px when displayed */
    height: 150px;
  }
  .page-index-latest-promotions__app-image {
    max-width: 100%;
    height: auto; /* Ensure mobile images don't overflow */
  }
  /* Constraint: All images within .page-index-latest-promotions must use max-width: 100%; height: auto; */
  .page-index-latest-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-index-latest-promotions__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-index-latest-promotions__accordion-content {
    padding: 15px 20px;
  }
  .page-index-latest-promotions__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

/* Ensure no content causes horizontal scrolling on mobile */
@media (max-width: 768px) {
  .page-index-latest-promotions {
    overflow-x: hidden;
  }
  .page-index-latest-promotions__container {
    padding: 0 15px;
  }
  /* Explicitly ensure content images are responsive and don't cause overflow */
  .page-index-latest-promotions img:not(.page-index-latest-promotions__feature-icon) {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not displayed smaller than 200px */
    min-height: 200px;
  }
  .page-index-latest-promotions__feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not displayed smaller than 200px */
    min-height: 200px;
  }
}

/* General image size constraint for content area */
.page-index-latest-promotions img {
  min-width: 200px;
  min-height: 200px;
}

/* Specific override for feature icons to ensure they meet the minimum size while still being responsive */
.page-index-latest-promotions__feature-icon {
  width: 200px; /* Explicitly set to minimum allowed size */
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-index-latest-promotions__feature-icon {
    width: 200px; /* Maintain minimum size on mobile */
    height: 200px;
  }
}