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

.page-login__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* 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;
}

.page-login__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.page-login__hero-content {
  position: relative;
  z-index: 3;
  padding: 40px;
  background: rgba(0, 51, 102, 0.75); /* Semi-transparent dark blue background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  color: #ffffff;
}

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

.page-login__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-login__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-login__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__section-title {
  font-size: 2em;
  color: #003366; /* Dark blue for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-login__text-content {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-login__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-login__ordered-list,
.page-login__unordered-list {
  list-style-position: inside;
  margin-bottom: 30px;
  padding-left: 0;
}

.page-login__list-item {
  margin-bottom: 15px;
  font-size: 1em;
  color: #333333;
}

.page-login__list-heading {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 5px;
}

.page-login__secondary-button {
  display: inline-block;
  background-color: #003366; /* Dark blue button */
  color: #ffffff; /* White text on dark blue button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-login__secondary-button:hover {
  background-color: #002244;
}

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

.page-login__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 1.1em;
  font-weight: bold;
  color: #003366;
  cursor: pointer;
  background-color: #e0eaf3; /* Lighter blue for FAQ question background */
  transition: background-color 0.3s ease;
}

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

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

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

.page-login__faq-answer {
  padding: 0 20px 15px 20px;
  font-size: 1em;
  color: #333333;
}

.page-login__faq-answer p {
  margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-login__hero-content {
    padding: 20px;
  }

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

  .page-login__description {
    font-size: 1em;
  }

  .page-login__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-login__list-heading {
    font-size: 1.1em;
  }

  .page-login__faq-question {
    font-size: 1em;
  }

  .page-login__image-content {
    max-width: 100%;
    height: auto;
  }
}