.page-resources-latest-promotions-guide {
  color: #333333; /* Dark text for light body background */
}

.page-resources-latest-promotions-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-latest-promotions-guide__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-resources-latest-promotions-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no filter changes image color */
}

.page-resources-latest-promotions-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF; /* White text for dark hero overlay/image */
  padding: 20px;
  max-width: 90%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay for text readability */
  border-radius: 10px;
}

.page-resources-latest-promotions-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-resources-latest-promotions-guide__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-resources-latest-promotions-guide__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-latest-promotions-guide__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-resources-latest-promotions-guide__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Text color for register button */
  border: 2px solid #FFFFFF;
}

.page-resources-latest-promotions-guide__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-resources-latest-promotions-guide__button--login,
.page-resources-latest-promotions-guide__button--download {
  background-color: #FCBC45; /* Login and Download button color */
  color: #000000; /* Text color for login/download button */
  border: 2px solid #FCBC45;
}

.page-resources-latest-promotions-guide__button--login:hover,
.page-resources-latest-promotions-guide__button--download:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-resources-latest-promotions-guide__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
  font-size: 1.1em;
}

.page-resources-latest-promotions-guide__article p {
  margin-bottom: 1em;
}

.page-resources-latest-promotions-guide__heading {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-latest-promotions-guide__promotion-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-resources-latest-promotions-guide__card-image {
  width: 100%;
  max-width: 600px; /* Card image size constraint */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-resources-latest-promotions-guide__card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-latest-promotions-guide__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-resources-latest-promotions-guide__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block; /* Center the list itself */
}

.page-resources-latest-promotions-guide__card-features li {
  background-color: #f9f9f9;
  padding: 8px 15px;
  margin-bottom: 5px;
  border-radius: 5px;
  border-left: 3px solid #FCBC45;
  font-size: 0.95em;
  color: #333333;
}

.page-resources-latest-promotions-guide__claiming-steps {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-resources-latest-promotions-guide__claiming-steps li,
.page-resources-latest-promotions-guide__terms-list li,
.page-resources-latest-promotions-guide__why-taya01-list li {
  margin-bottom: 10px;
  color: #333333;
}

.page-resources-latest-promotions-guide__terms-list,
.page-resources-latest-promotions-guide__why-taya01-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-resources-latest-promotions-guide__cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-latest-promotions-guide__return-link-container {
  text-align: center;
  margin-top: 50px;
}

.page-resources-latest-promotions-guide__return-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-latest-promotions-guide__return-link:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-latest-promotions-guide__hero-content {
    max-width: 95%;
    padding: 15px;
  }

  .page-resources-latest-promotions-guide__main-title {
    font-size: 2em;
  }

  .page-resources-latest-promotions-guide__intro-text {
    font-size: 1em;
  }

  .page-resources-latest-promotions-guide__hero-buttons {
    flex-direction: column;
  }

  .page-resources-latest-promotions-guide__button {
    width: 80%;
  }

  .page-resources-latest-promotions-guide__content-area {
    padding: 20px 15px;
    font-size: 1em;
  }

  .page-resources-latest-promotions-guide__heading {
    font-size: 1.6em;
  }

  .page-resources-latest-promotions-guide__card-title {
    font-size: 1.4em;
  }

  .page-resources-latest-promotions-guide__card-image {
    max-width: 100%;
    width: 100%;
    height: auto; /* Ensure images are responsive */
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
  }

  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-resources-latest-promotions-guide img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width for all content images */
    min-height: 200px; /* Enforce min-height for all content images */
  }
}

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

  .page-resources-latest-promotions-guide__intro-text {
    font-size: 0.9em;
  }

  .page-resources-latest-promotions-guide__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}