.page-promo {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight color for title */
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-promo__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo__button--primary:hover {
  background-color: #e0a73b;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background effect */
  display: block;
}

.page-promo__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-promo__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000000;
}

.page-promo__section-intro {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-promo__card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.page-promo__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-promo__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

.page-promo__button--small:hover {
  background-color: #e0a73b;
}

.page-promo__vip-program .page-promo__section-intro {
  margin-bottom: 60px;
}

.page-promo__vip-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__vip-item {
  text-align: center;
  max-width: 250px;
}

.page-promo__vip-icon {
  width: 200px; /* Minimum 200px for content images */
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

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

.page-promo__vip-item-description {
  color: #666666;
}

.page-promo__action-center {
  margin-top: 50px;
}

.page-promo__how-to-claim .page-promo__section-intro {
  margin-bottom: 60px;
}

.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: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promo__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-promo__step-description {
  color: #666666;
}

.page-promo__faq .page-promo__section-intro {
  margin-bottom: 50px;
}

.page-promo__accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-promo__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__accordion-header {
  background-color: #f0f0f0;
  color: #000000;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__accordion-header:hover {
  background-color: #e0e0e0;
}

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

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

.page-promo__accordion-content {
  padding: 0 25px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo__accordion-content p {
  padding: 15px 0;
  color: #555555;
}

.page-promo__accordion-header.active + .page-promo__accordion-content {
  max-height: 200px; /* Adjust as needed */
  padding-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__hero-actions {
    flex-direction: column;
  }

  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }

  .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__card-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__vip-features {
    flex-direction: column;
    align-items: center;
  }

  .page-promo__vip-item {
    max-width: 100%;
  }

  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }

  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    object-fit: cover; /* Adjust as needed for specific images */
  }

  .page-promo__card-image, .page-promo__vip-icon {
    max-width: 100%;
    height: auto;
  }
}