.page-promo {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  background-color: #000000; /* Dark background for hero section */
  padding: 0;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: brightness(0.8); /* Slightly darken image for text readability */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #ffffff; /* Light text for dark hero background */
  max-width: 900px;
  padding: 20px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Main brand color for hero title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary brand color for text */
  border: 2px solid #FFD700;
}

.page-promo__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promo__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Main brand color for text */
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: #FFD700;
  color: #8B0000; /* Auxiliary brand color for text */
}

.page-promo__button--outline {
  background-color: transparent;
  color: #8B0000; /* Auxiliary brand color for text */
  border: 2px solid #8B0000;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promo__button--outline:hover {
  background-color: #8B0000;
  color: #ffffff;
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #8B0000; /* Auxiliary brand color */
  color: #FFD700; /* Main brand color for text */
  border: 2px solid #8B0000;
}

.page-promo__button--small:hover {
  background-color: #a00000;
  border-color: #a00000;
  color: #ffffff;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary brand color */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-promo__overview-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #8B0000; /* Auxiliary brand color */
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-promo__vip-section {
  padding: 80px 0;
  background-color: #FFD700; /* Main brand color for VIP section background */
  color: #8B0000; /* Auxiliary brand color for text */
}

.page-promo__vip-section .page-promo__section-title {
  color: #8B0000; /* Auxiliary brand color */
}

.page-promo__vip-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promo__vip-image {
  flex: 1 1 45%;
  min-width: 400px; /* Ensure image is not too small */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promo__vip-text {
  flex: 1 1 45%;
  font-size: 1.1em;
}

.page-promo__vip-text p {
  margin-bottom: 20px;
}

.page-promo__terms-section {
  padding: 80px 0;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
}

.page-promo__terms-item {
  background-color: #f0f0f0;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700; /* Main brand color accent */
  border-radius: 5px;
  font-size: 1em;
}

.page-promo__terms-item strong {
  color: #8B0000; /* Auxiliary brand color */
}

.page-promo__terms-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promo__cta-section {
  padding: 80px 0;
  background-color: #8B0000; /* Auxiliary brand color for CTA background */
  color: #ffffff; /* Light text for dark background */
  text-align: center;
}

.page-promo__cta-section .page-promo__section-title {
  color: #FFD700; /* Main brand color for title */
}

.page-promo__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__vip-image {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
  }
  .page-promo__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__vip-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-promo__vip-image {
    flex: none;
    width: 100%;
    max-width: 600px;
    height: auto;
  }
  .page-promo__vip-text {
    flex: none;
    width: 100%;
  }
  .page-promo__cta-actions {
    flex-direction: column;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  /* Ensure images in content area are responsive and not too small */
  .page-promo__overview-section img,
  .page-promo__vip-section img,
  .page-promo__terms-section img,
  .page-promo__cta-section img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
  .page-promo__promo-card .page-promo__card-image {
    height: 200px; /* Adjust card image height for mobile */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__promo-card {
    margin-left: 10px;
    margin-right: 10px;
  }
}