.page-promo {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f8f8, #e0e0e0); /* Subtle gradient for hero background */
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promo__btn--primary {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000;
  box-shadow: 0 4px 15px rgba(252, 188, 69, 0.4);
}

.page-promo__btn--primary:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 188, 69, 0.6);
}

.page-promo__btn--secondary {
  background-color: #000000; /* Main color for secondary CTA */
  color: #FFFFFF; /* Register color for secondary CTA */
  border: 2px solid #000000;
}

.page-promo__btn--secondary:hover {
  background-color: #333333;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-promo__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promo__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.page-promo__highlights-section,
.page-promo__vip-section,
.page-promo__how-to-claim-section,
.page-promo__why-taya555-section,
.page-promo__faq-section,
.page-promo__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-promo__highlights-title,
.page-promo__vip-title,
.page-promo__how-to-claim-title,
.page-promo__why-taya555-title,
.page-promo__faq-title,
.page-promo__cta-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-promo__highlights-description,
.page-promo__vip-description,
.page-promo__how-to-claim-description,
.page-promo__why-taya555-description,
.page-promo__cta-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

.page-promo__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-promo__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__promo-card-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-promo__promo-card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__btn--claim {
  background-color: #FCBC45;
  color: #000000;
  width: 100%;
  padding: 12px 20px;
  font-size: 1em;
}

.page-promo__btn--claim:hover {
  background-color: #e6a73c;
}

.page-promo__vip-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__vip-title {
  color: #FCBC45;
}

.page-promo__vip-description {
  color: #f0f0f0;
}

.page-promo__vip-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__vip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 1.1em;
  max-width: 600px;
}

.page-promo__vip-list-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #FFFFFF;
}

.page-promo__vip-list-item::before {
  content: '⭐'; /* Star icon */
  font-size: 1.2em;
  color: #FCBC45;
}

.page-promo__vip-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(252, 188, 69, 0.3);
}

.page-promo__btn--vip {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 40px;
}

.page-promo__btn--vip:hover {
  background-color: #e6a73c;
}

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

.page-promo__step-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
  background-color: rgba(252, 188, 69, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__step-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-promo__btn--step {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__btn--step:hover {
  background-color: #333333;
}

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

.page-promo__feature-item {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__feature-icon {
  width: 100%;
  max-width: 200px; /* Ensure images are not too small */
  height: auto;
  margin-bottom: 20px;
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__feature-text {
  font-size: 0.95em;
  color: #666666;
}

.page-promo__faq-container {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 10px;
}

.page-promo__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
}

.page-promo__cta-title {
  color: #FCBC45;
  font-size: 3em;
}

.page-promo__cta-description {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-promo__btn--cta {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-promo__btn--cta:hover {
  background-color: #e6a73c;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__highlights-title,
  .page-promo__vip-title,
  .page-promo__how-to-claim-title,
  .page-promo__why-taya555-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 2.2em;
  }
  .page-promo__promo-card-image,
  .page-promo__vip-image,
  .page-promo__feature-icon {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 20px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__highlights-section,
  .page-promo__vip-section,
  .page-promo__how-to-claim-section,
  .page-promo__why-taya555-section,
  .page-promo__faq-section,
  .page-promo__cta-section {
    margin: 40px auto;
    padding: 30px 15px;
  }
  .page-promo__highlights-title,
  .page-promo__vip-title,
  .page-promo__how-to-claim-title,
  .page-promo__why-taya555-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__promo-grid,
  .page-promo__steps-grid,
  .page-promo__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__vip-features {
    flex-direction: column-reverse; /* Image above text on mobile */
  }
  .page-promo__vip-list-item {
    font-size: 1em;
  }
  /* Mobile content area images must use max-width: 100%; height: auto; */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__promo-card-image {
    height: auto;
    min-height: 200px; /* Ensure minimum size */
  }
  .page-promo__feature-icon {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 200px; /* Ensure minimum size */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__highlights-title,
  .page-promo__vip-title,
  .page-promo__how-to-claim-title,
  .page-promo__why-taya555-title,
  .page-promo__faq-title,
  .page-promo__cta-title {
    font-size: 1.5em;
  }
  .page-promo__promo-card-title {
    font-size: 1.4em;
  }
  .page-promo__step-title {
    font-size: 1.5em;
  }
  .page-promo__feature-title {
    font-size: 1.3em;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
  }
  .page-promo__cta-title {
    font-size: 2em;
  }
  .page-promo__btn--cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}