.page-resources-2jl-promo-guide {
  color: #333333; /* Dark text for light body background */
}

.page-resources-2jl-promo-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-2jl-promo-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-2jl-promo-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* Light text for hero overlay */
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-resources-2jl-promo-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-2jl-promo-guide__intro-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-resources-2jl-promo-guide__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-2jl-promo-guide__cta-button:hover {
  background-color: #e0a53a; /* Slightly darker on hover */
  transform: translateY(-2px);
}

.page-resources-2jl-promo-guide__cta-button--login {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Dark text for white button */
  margin-left: 20px;
}

.page-resources-2jl-promo-guide__cta-button--login:hover {
  background-color: #f0f0f0;
}

.page-resources-2jl-promo-guide__content-area {
  max-width: 800px; /* Article content width */
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-resources-2jl-promo-guide__article-wrapper {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-2jl-promo-guide__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-resources-2jl-promo-guide__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-2jl-promo-guide__paragraph {
  margin-bottom: 15px;
  color: #333333;
  line-height: 1.6;
}

.page-resources-2jl-promo-guide__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-resources-2jl-promo-guide__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-2jl-promo-guide__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-2jl-promo-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-2jl-promo-guide__card-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-2jl-promo-guide__card-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-2jl-promo-guide__card-button {
  display: inline-block;
  background-color: #000000; /* Main color for card buttons */
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-resources-2jl-promo-guide__card-button:hover {
  background-color: #333333;
}

.page-resources-2jl-promo-guide__steps-list,
.page-resources-2jl-promo-guide__bullet-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-2jl-promo-guide__steps-list {
  list-style-type: decimal;
}

.page-resources-2jl-promo-guide__list-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-resources-2jl-promo-guide__faq-container {
  margin-top: 30px;
  border-top: 1px solid #eee;
}

.page-resources-2jl-promo-guide__faq-item {
  border-bottom: 1px solid #eee;
}

.page-resources-2jl-promo-guide__faq-question {
  background-color: #f8f8f8;
  color: #000000;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
  padding-right: 40px;
}

.page-resources-2jl-promo-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
}

.page-resources-2jl-promo-guide__faq-question.active::after {
  content: '-';
}

.page-resources-2jl-promo-guide__faq-question:hover {
  background-color: #efefef;
}

.page-resources-2jl-promo-guide__faq-answer {
  padding: 0 20px;
  background-color: #FFFFFF;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-resources-2jl-promo-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 20px;
}

.page-resources-2jl-promo-guide__final-cta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

.page-resources-2jl-promo-guide__return-link-wrapper {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.page-resources-2jl-promo-guide__return-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-2jl-promo-guide__return-link:hover {
  color: #FCBC45;
}

@media (max-width: 768px) {
  .page-resources-2jl-promo-guide__hero-section {
    min-height: 400px;
  }
  .page-resources-2jl-promo-guide__main-title {
    font-size: 2.2em;
  }
  .page-resources-2jl-promo-guide__intro-description {
    font-size: 1em;
  }
  .page-resources-2jl-promo-guide__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
    margin: 10px 0;
    display: block;
  }
  .page-resources-2jl-promo-guide__cta-button--login {
    margin-left: 0;
  }
  .page-resources-2jl-promo-guide__content-area {
    padding: 15px;
    font-size: 1em;
  }
  .page-resources-2jl-promo-guide__article-wrapper {
    padding: 20px;
  }
  .page-resources-2jl-promo-guide__section-title {
    font-size: 2em;
  }
  .page-resources-2jl-promo-guide__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources-2jl-promo-guide__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-2jl-promo-guide__card-image {
    max-width: 100%;
    height: auto; /* Ensures images are responsive and do not overflow */
    min-width: 200px;
    min-height: 200px;
  }
  .page-resources-2jl-promo-guide__promo-card {
    padding: 20px;
  }
  /* Ensure all content images are responsive on mobile */
  .page-resources-2jl-promo-guide img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-2jl-promo-guide__faq-question {
    font-size: 1em;
    padding: 12px 15px;
    padding-right: 35px;
  }
  .page-resources-2jl-promo-guide__faq-question::after {
    right: 15px;
  }
  .page-resources-2jl-promo-guide__faq-answer.active {
    max-height: 400px; /* Adjust as needed for mobile content */
  }
}