.page-login {
  color: #333333; /* Dark text for default white body background */
  font-family: 'Poppins', sans-serif; /* Using a modern, clean font */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #f8f8f8; /* Light background for the page content area */
}

.page-login__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Minimum height for hero section */
}

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

.page-login__hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-login__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  line-height: 1.8;
}

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

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

.page-login__button--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #1E90FF; /* Blue text on gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-login__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-login__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on transparent background */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-login__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-login__content-area {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.page-login__card-section {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 50px;
  border-left: 6px solid #1E90FF; /* Blue accent */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__card-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.page-login__section-title {
  color: #1E90FF; /* Blue title */
  font-size: 2.2em;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 15px;
  text-align: center;
}

.page-login__section-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #555555;
  text-align: justify;
}

.page-login__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-login__ordered-list,
.page-login__unordered-list {
  list-style: none; /* Remove default list style */
  padding-left: 0;
  margin-bottom: 25px;
}

.page-login__list-item {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333333;
  display: flex;
  align-items: flex-start;
}

.page-login__ordered-list .page-login__list-item::before {
  content: counter(list-item) ". ";
  counter-increment: list-item;
  font-weight: bold;
  color: #FFD700; /* Gold numbering */
  font-size: 1.3em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-login__unordered-list .page-login__list-item::before {
  content: "\2022"; /* Bullet point */
  font-weight: bold;
  color: #1E90FF; /* Blue bullet */
  font-size: 1.5em;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-login__list-item h3 {
  color: #1E90FF; /* Blue for sub-titles */
  margin-bottom: 8px;
  font-size: 1.4em;
  line-height: 1.3;
}

.page-login__list-item p {
  margin-left: 0; /* Adjusted for custom list style */
  color: #666666;
  text-align: justify;
}

.page-login__faq-container {
  margin-top: 40px;
}

.page-login__faq-item {
  background-color: #f0f6ff; /* Lighter blue background for FAQ item */
  border: 1px solid #d0e0f0;
  border-radius: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__faq-question {
  background-color: #1E90FF; /* Blue background for FAQ question */
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-radius: 12px;
}

.page-login__faq-question::after {
  content: '+';
  font-size: 1.8em;
  font-weight: lighter;
  transition: transform 0.3s ease;
}

.page-login__faq-question--active {
  background-color: #1565b3;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-login__faq-question--active::after {
  transform: rotate(45deg);
}

.page-login__faq-answer {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.page-login__faq-answer p {
  margin: 15px 0;
  color: #555555;
}

.page-login__faq-question--active + .page-login__faq-answer {
  padding-top: 15px;
  padding-bottom: 15px;
}

.page-login__cta-section {
  text-align: center;
  background: linear-gradient(135deg, #1E90FF, #0028ff); /* Blue gradient background */
  color: #ffffff;
  padding: 70px 30px;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-login__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-login__cta-description {
  font-size: 1.3em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .page-login__hero-title {
    font-size: 2.5em;
  }
  .page-login__hero-description {
    font-size: 1.1em;
  }
  .page-login__section-title {
    font-size: 2em;
  }
  .page-login__cta-title {
    font-size: 2.3em;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-login__hero-title {
    font-size: 2em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__hero-overlay {
    padding: 25px;
  }
  .page-login__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto; /* Center buttons */
  }
  .page-login__content-area {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-login__card-section {
    padding: 30px;
    margin-bottom: 30px;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__section-text {
    font-size: 1em;
  }
  .page-login__list-item h3 {
    font-size: 1.2em;
  }
  .page-login__list-item p {
    font-size: 0.95em;
  }
  .page-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-login__faq-answer p {
    font-size: 0.9em;
  }
  .page-login__cta-section {
    padding: 50px 20px;
  }
  .page-login__cta-title {
    font-size: 2em;
  }
  .page-login__cta-description {
    font-size: 1.1em;
  }
  /* Ensure all images within .page-login are responsive and not too small */
  .page-login img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforcing minimum size for content images */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-login__hero-section {
    padding: 40px 10px;
  }
  .page-login__hero-title {
    font-size: 1.8em;
  }
  .page-login__hero-description {
    font-size: 0.9em;
  }
  .page-login__hero-overlay {
    padding: 15px;
  }
  .page-login__button {
    min-width: unset;
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-login__card-section {
    padding: 20px;
  }
  .page-login__section-title {
    font-size: 1.6em;
  }
  .page-login__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-login__cta-title {
    font-size: 1.8em;
  }
  .page-login__cta-description {
    font-size: 1em;
  }
}