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

.page-promo__hero-section {
  position: relative;
  text-align: center;
  color: #FFFFFF;
  padding: 0; /* Content padding handled by hero-content */
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promo__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  box-sizing: border-box;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.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;
  cursor: pointer;
  text-align: center;
  min-width: 180px;
  box-sizing: border-box;
}

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

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

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

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

.page-promo__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

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

.page-promo__feature-card,
.page-promo__type-card,
.page-promo__faq-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  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;
}

.page-promo__feature-card:hover,
.page-promo__type-card:hover,
.page-promo__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-promo__feature-title,
.page-promo__type-title,
.page-promo__faq-question,
.page-promo__step-title,
.page-promo__tip-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__feature-text,
.page-promo__type-text,
.page-promo__faq-answer,
.page-promo__step-text,
.page-promo__tip-text {
  color: #555555;
  font-size: 1em;
}

.page-promo__type-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min width */
  min-height: 200px; /* Ensure min height */
}

.page-promo__steps-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  counter-reset: step-counter;
}

.page-promo__step-item {
  position: relative;
  padding-left: 70px;
}

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

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

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

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

.page-promo__tips-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promo__tip-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.page-promo__faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
}

.page-promo__faq-answer {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  display: block;
}

.page-promo__final-cta {
  background-color: #000000;
  color: #FFFFFF;
}

.page-promo__final-cta .page-promo__section-title,
.page-promo__final-cta .page-promo__section-intro {
  color: #FFFFFF;
}

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

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

@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@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__button {
    width: 80%;
    min-width: unset;
  }
  .page-promo__section {
    padding: 40px 15px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
  }
  .page-promo__features-grid,
  .page-promo__types-grid,
  .page-promo__faq-grid,
  .page-promo__tips-list {
    grid-template-columns: 1fr;
  }
  .page-promo__step-item {
    padding-left: 60px;
  }
  .page-promo__step-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-promo__type-image {
    height: 200px;
  }
  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@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__button {
    width: 90%;
    padding: 10px 20px;
  }
}