.page-promo {
  color: #333333; /* Dark text on 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__hero-section {
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 80px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Gold accent for title */
  text-shadow: 0 0 10px rgba(252, 188, 69, 0.5);
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

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

.page-promo__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;
  white-space: nowrap;
}

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

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

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

.page-promo__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promo__button--center {
  margin-top: 30px;
}

.page-promo__content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.page-promo__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-promo__section-paragraph, .page-promo__paragraph {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-promo__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo__link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-promo__grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-promo__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-promo__image--left {
  order: -1; /* For alternating image/text layout */
}

.page-promo__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promo__list-item {
  background-color: #f9f9f9;
  border-left: 4px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promo__list-title {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-promo__step-list {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
}

.page-promo__step-list .page-promo__list-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
  background-color: #f9f9f9;
  border-left: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-promo__step-list .page-promo__list-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #FCBC45;
  color: #000000;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-promo__offer-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promo__offer-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-promo__offer-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__offer-card-heading {
  font-size: 1.5em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo__offer-card-link {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.page-promo__offer-card-link:hover {
  color: #FCBC45;
}

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

.page-promo__offer-card-button {
  align-self: flex-start;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: none;
}

.page-promo__offer-card-button:hover {
  background-color: #e0a53b;
}

.page-promo__conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-promo__conclusion .page-promo__section-title {
  margin-bottom: 20px;
}

.page-promo__conclusion .page-promo__section-paragraph {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-promo__grid-container {
    grid-template-columns: 1fr 1fr;
  }

  .page-promo__image--left {
    order: 0;
  }

  .page-promo__promo-types .page-promo__grid-container {
    grid-template-columns: 1fr 1fr;
  }

  .page-promo__promo-types .page-promo__image--left {
    order: -1;
  }

  .page-promo__hero-section {
    padding: 120px 20px 60px;
  }

  .page-promo__hero-title {
    font-size: 4em;
  }
}

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

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

  .page-promo__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-promo__sub-title {
    font-size: 1.5em;
  }

  .page-promo__section-paragraph, .page-promo__paragraph {
    font-size: 0.95em;
  }

  .page-promo__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-promo__offer-card-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }

  .page-promo__offer-card-heading {
    font-size: 1.3em;
  }

  .page-promo__offer-card-description {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }

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

  .page-promo__sub-title {
    font-size: 1.3em;
  }

  .page-promo__hero-section {
    padding: 60px 15px 30px;
  }

  .page-promo__content-section {
    padding: 40px 15px;
  }
}