.page-promo {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF; /* Explicitly set for content area if needed */
}

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

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px; /* Max width for content within hero */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7; /* Slightly dim image to make text stand out */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #FFFFFF;
}

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

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

.page-promo__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-promo__cta-button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-promo__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-promo__cta-button--login:hover {
  background-color: #e6a83c;
  transform: translateY(-2px);
}

.page-promo__intro-text {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

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

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

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

.page-promo__section {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}

.page-promo__section:last-of-type {
  border-bottom: none;
}

.page-promo__promo-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
  padding: 30px;
}

.page-promo__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-promo__promo-image {
  flex: 1;
  min-width: 300px; /* Ensure image is not too small */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  max-width: 100%; /* Ensure image does not overflow */
}

.page-promo__promo-content {
  flex: 2;
  padding: 20px;
}

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

.page-promo__promo-subtitle {
  font-size: 1.5em;
  color: #FCBC45;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promo__promo-description {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #555555;
  text-align: justify;
}

.page-promo__promo-steps,
.page-promo__promo-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promo__promo-steps li,
.page-promo__promo-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
}

.page-promo__step-number,
.page-promo__step-icon,
.page-promo__list-icon {
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 0.9em;
}

.page-promo__promo-note {
  font-size: 0.95em;
  color: #777777;
  margin-top: 20px;
  font-style: italic;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-promo__terms-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
}

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

.page-promo__grid-item {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__grid-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promo__final-cta {
  text-align: center;
  padding: 60px 0;
  background-color: #000000; /* Dark background for strong CTA */
  color: #FFFFFF;
  border-radius: 12px;
  margin-top: 80px;
}

.page-promo__final-cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-promo__final-cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__promo-card {
    flex-direction: column;
  }
  .page-promo__promo-card--reverse {
    flex-direction: column;
  }
  .page-promo__promo-content {
    padding: 0;
  }
  .page-promo__promo-image {
    width: 100%;
    max-width: 600px; /* Constrain max width for images in column layout */
    margin-bottom: 20px;
  }
  .page-promo__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promo__final-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__promo-title {
    font-size: 1.8em;
  }
  .page-promo__promo-subtitle {
    font-size: 1.3em;
  }
  .page-promo__text-content,
  .page-promo__promo-description,
  .page-promo__promo-steps li,
  .page-promo__promo-list li,
  .page-promo__grid-description {
    font-size: 0.95em;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo__promo-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__final-cta-title {
    font-size: 1.8em;
  }
  .page-promo__final-cta-description {
    font-size: 1em;
  }

  /* CRITICAL: Mobile content image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__promo-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__promo-title {
    font-size: 1.5em;
  }
  .page-promo__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-promo__grid {
    grid-template-columns: 1fr;
  }
  .page-promo__final-cta-title {
    font-size: 1.5em;
  }
}