.page-login {
  color: #333333; /* Dark text for light body background #f4f4f4 */
  background-color: #f4f4f4;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-login__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 500px;
}

.page-login__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7); /* Slightly darken image for text readability */
}

.page-login__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  color: #ffffff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

.page-login__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary brand color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

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

.page-login__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-login__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-login__button--primary {
  background-color: #FFD700; /* Primary brand color */
  color: #1A2B3C; /* Auxiliary brand color for text */
  border: 2px solid #FFD700;
}

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

.page-login__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Primary brand color for text */
  border: 2px solid #FFD700;
}

.page-login__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-login__content-area {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff; /* White background for content sections */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-login__section-title {
  font-size: 2.5em;
  color: #1A2B3C; /* Auxiliary brand color */
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFD700;
}

.page-login__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-login__sub-title {
  font-size: 1.8em;
  color: #1A2B3C;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-login__paragraph {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333333;
}

.page-login__illustration-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-login__checklist, .page-login__ordered-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-login__checklist .page-login__list-item {
  background-color: #fffaf0; /* Light cream background */
  border-left: 4px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  line-height: 1.5;
  color: #333333;
}

.page-login__ordered-list .page-login__list-item {
  background-color: #fcfcfc;
  border: 1px solid #eee;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  counter-increment: step-counter;
  position: relative;
  padding-left: 60px;
}

.page-login__ordered-list .page-login__list-item h4 {
  font-size: 1.3em;
  color: #1A2B3C;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-login__ordered-list .page-login__list-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FFD700;
  color: #1A2B3C;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-login__cta-buttons--center {
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-login__faq-item {
  background-color: #fefefe;
  border: 1px solid #eeeeee;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  color: #333333;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #1A2B3C;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

.page-login__faq-question:hover {
  background-color: #e6e6e6;
}

.page-login__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-toggle {
  transform: rotate(45deg);
}

.page-login__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  background-color: #ffffff;
  border-top: 1px solid #f0f0f0;
}

.page-login__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 2.8em;
  }

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

@media (max-width: 768px) {
  .page-login__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }

  .page-login__hero-content {
    padding: 15px;
  }

  .page-login__main-title {
    font-size: 2.2em;
  }

  .page-login__intro-text {
    font-size: 1.1em;
  }

  .page-login__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-login__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-login__content-area {
    margin: 20px auto;
    padding: 15px;
  }

  .page-login__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-login__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-login__sub-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-login__paragraph, .page-login__list-item {
    font-size: 0.95em;
  }

  .page-login__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }

  .page-login__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile content image constraint */
  .page-login img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-login__section-title {
    font-size: 1.6em;
  }

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

  .page-login__hero-section {
    min-height: 350px;
  }
}