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

.page-login__hero-section {
  background-color: #0A192F; /* Dark blue background for hero */
  color: #ffffff; /* Light text for dark background */
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-login__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.page-login__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-login__hero-image-wrapper {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

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

.page-login__article {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 40px;
}

.page-login__section-title {
  font-size: 2em;
  color: #0A192F;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-login__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-login__highlight {
  color: #0A192F;
  font-weight: bold;
}

.page-login__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-login__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-login__button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-login__process-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-login__process-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-login__process-step-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-login__process-image {
  display: block;
  width: 100%;
  max-width: 600px; /* Example max-width for content image */
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-login__form {
  margin-top: 30px;
  padding: 30px;
  background-color: #f0f4f8;
  border-radius: 8px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-login__form-group {
  text-align: left;
}

.page-login__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #0A192F;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.page-login__forgot-password-link {
  color: #0A192F;
  text-decoration: none;
  font-size: 0.95em;
  text-align: center;
}

.page-login__forgot-password-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-login__register-prompt {
  text-align: center;
  font-size: 1em;
  color: #555555;
}

.page-login__register-link {
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
}

.page-login__register-link:hover {
  text-decoration: underline;
}

.page-login__security-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-login__security-item {
  background-color: #f9f9f9;
  border-left: 5px solid #0A192F;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-login__security-tip-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-login__security-image {
  display: block;
  width: 100%;
  max-width: 600px; /* Example max-width for content image */
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

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

.page-login__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #0A192F;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

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

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

.page-login__faq-answer {
  padding: 0 20px 20px 20px;
  color: #555555;
}

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

.page-login__faq-image {
  display: block;
  width: 100%;
  max-width: 600px; /* Example max-width for content image */
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-login__call-to-action {
  background-color: #0A192F;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-login__call-to-action-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__call-to-action-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-login__call-to-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-login__call-to-action-image {
  display: block;
  width: 100%;
  max-width: 900px; /* Example max-width for content image */
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-login__hero-title {
    font-size: 2em;
  }

  .page-login__hero-description,
  .page-login__paragraph,
  .page-login__button {
    font-size: 1em;
  }

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

  .page-login__process-step-title,
  .page-login__security-tip-title {
    font-size: 1.3em;
  }

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

  .page-login__article {
    padding: 25px;
  }

  .page-login__call-to-action-title {
    font-size: 2em;
  }

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

  .page-login__call-to-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-login__hero-image,
  .page-login__process-image,
  .page-login__security-image,
  .page-login__faq-image,
  .page-login__call-to-action-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-login__content-area {
    padding: 0 15px;
  }

  .page-login__hero-section, .page-login__call-to-action {
    padding: 40px 15px;
  }

  .page-login__form {
    padding: 20px;
  }
}