.page-promo {
  color: #333333; /* Default text color for light body background */
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header offset for PC and mobile */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  color: #ffffff;
}

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

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(26, 46, 89, 0.7); /* Primary color with transparency */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Auxiliary color */
  color: #1A2E59; /* Primary color for text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

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

.page-promo__button--primary {
  background-color: #FFD700;
  color: #1A2E59;
}

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

.page-promo__button--secondary {
  background-color: #1A2E59;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promo__button--secondary:hover {
  background-color: #2a4170;
  border-color: #e6c200;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #1A2E59;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promo__dark-background {
  background-color: #1A2E59;
  color: #f0f0f0;
}

.page-promo__dark-background .page-promo__section-title {
  color: #FFD700;
}

.page-promo__dark-background .page-promo__section-title::after {
  background-color: #f0f0f0;
}

.page-promo__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo__text-content a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__text-content a:hover {
  text-decoration: underline;
}

.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-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.page-promo__dark-background .page-promo__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
}

.page-promo__card:hover {
  transform: translateY(-10px);
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-promo__dark-background .page-promo__card-title {
  color: #FFD700;
}

.page-promo__card-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

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

.page-promo__dark-background .page-promo__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-promo__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

.page-promo__dark-background .page-promo__feature-title {
  color: #FFD700;
}

.page-promo__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
}

.page-promo__cta-area {
  text-align: center;
  margin-top: 50px;
}

.page-promo__vip-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.page-promo__vip-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.page-promo__vip-icon {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-promo__vip-text {
  font-size: 1.1em;
  font-weight: bold;
  color: #FFD700;
}

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

.page-promo__event-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-promo__event-card:hover {
  transform: translateY(-10px);
}

.page-promo__event-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-promo__event-title {
  font-size: 1.6em;
  color: #1A2E59;
  margin-bottom: 10px;
}

.page-promo__event-description {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A2E59;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-description {
  font-size: 1em;
  line-height: 1.6;
}

.page-promo__step-description a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__step-description a:hover {
  text-decoration: underline;
}

.page-promo__terms-list {
  list-style: disc;
  margin-left: 20px;
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-promo__dark-background .page-promo__terms-list {
  color: #f0f0f0;
}

.page-promo__cta-final-content {
  text-align: center;
  padding: 60px 20px;
}

.page-promo__cta-final-content .page-promo__section-title {
  margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 450px;
    padding: 40px 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__text-content {
    font-size: 0.95em;
  }
  .page-promo__card-grid, .page-promo__features-grid, .page-promo__vip-features, .page-promo__event-card-grid, .page-promo__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promo__hero-image,
  .page-promo__card-image,
  .page-promo__feature-image,
  .page-promo__vip-icon,
  .page-promo__event-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min image size in mobile */
    min-height: 200px; /* Ensure min image size in mobile */
  }
  .page-promo__vip-icon {
    width: 100%;
    height: 100%;
  }
  .page-promo__terms-list {
    margin-left: 15px;
    font-size: 0.9em;
  }
  .page-promo__cta-final-content {
    padding: 40px 15px;
  }
  .page-promo {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__card-title, .page-promo__feature-title, .page-promo__event-title, .page-promo__step-title {
    font-size: 1.4em;
  }
  .page-promo__vip-text {
    font-size: 1em;
  }
}