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

.page-login__hero-section {
  background-color: #0A246A; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.page-login__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #F3C70E; /* Accent color for main title */
  line-height: 1.2;
}

.page-login__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-login__cta-button,
.page-login__secondary-button {
  display: inline-block;
  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;
  margin: 10px;
}

.page-login__cta-button {
  background-color: #F3C70E; /* Accent color for primary CTA */
  color: #0A246A;
  border: 2px solid #F3C70E;
}

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

.page-login__secondary-button {
  background-color: transparent;
  color: #F3C70E;
  border: 2px solid #F3C70E;
}

.page-login__secondary-button:hover {
  background-color: rgba(243, 199, 14, 0.1);
  transform: translateY(-2px);
}

.page-login__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-login__section-title {
  font-size: 2.5em;
  color: #0A246A; /* Main brand color for section titles */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.page-login__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F3C70E; /* Accent color underline */
  border-radius: 2px;
}

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

.page-login__login-form-section {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-login__form-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-login__form-title {
  font-size: 2em;
  color: #0A246A;
  text-align: center;
  margin-bottom: 30px;
}

.page-login__form-group {
  margin-bottom: 25px;
}

.page-login__form-label {
  display: block;
  font-size: 1em;
  color: #333333;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-login__form-input {
  width: calc(100% - 24px);
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 1em;
  color: #333333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-login__form-input:focus {
  border-color: #0A246A;
  box-shadow: 0 0 0 3px rgba(10, 36, 106, 0.2);
  outline: none;
}

.page-login__form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.95em;
}

.page-login__remember-me {
  display: flex;
  align-items: center;
}

.page-login__checkbox {
  margin-right: 8px;
}

.page-login__checkbox-label {
  color: #555555;
}

.page-login__forgot-password {
  color: #0A246A;
  text-decoration: none;
}

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

.page-login__submit-button {
  width: 100%;
  padding: 15px;
  background-color: #0A246A; /* Main brand color for submit button */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-login__submit-button:hover {
  background-color: #1a429a;
  transform: translateY(-2px);
}

.page-login__no-account {
  text-align: center;
  margin-top: 25px;
  font-size: 1em;
  color: #555555;
}

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

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

.page-login__process-section {
  background-color: #f0f0f0;
}

.page-login__process-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-login__process-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.page-login__process-item:hover {
  transform: translateY(-5px);
}

.page-login__process-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #0A246A; /* Main brand color for step number */
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  border: 4px solid #F3C70E; /* Accent border */
}

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

.page-login__process-item p {
  color: #555555;
}

.page-login__process-image-wrapper {
  max-width: 800px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-login__security-section {
  background-color: #ffffff;
}

.page-login__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-login__security-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0A246A;
}

.page-login__security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-login__security-card-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-login__security-card p {
  color: #555555;
}

.page-login__security-image-wrapper {
  max-width: 1000px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-login__faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.page-login__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

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

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

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

.page-login__faq-answer {
  padding: 15px 25px 20px 25px;
  color: #555555;
  border-top: 1px solid #eee;
}

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

.page-login__faq-image-wrapper {
  max-width: 800px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-login__cta-bottom {
  text-align: center;
  background-color: #0A246A; /* Main brand color for bottom CTA */
  color: #ffffff;
  padding: 80px 20px;
}

.page-login__cta-bottom .page-login__section-title,
.page-login__cta-bottom .page-login__section-description {
  color: #ffffff;
}

.page-login__cta-bottom .page-login__section-title::after {
  background-color: #F3C70E;
}

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

.page-login__cta-button--large,
.page-login__secondary-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 15px;
}

.page-login__call-to-action-image-wrapper {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

/* Responsive adjustments */
@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;
  }

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

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

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

  .page-login__content-area {
    padding: 40px 15px;
  }

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

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

  .page-login__form-container {
    padding: 30px;
  }

  .page-login__form-title {
    font-size: 1.8em;
  }

  .page-login__form-input {
    width: calc(100% - 20px);
    padding: 10px;
  }

  .page-login__form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .page-login__process-list {
    grid-template-columns: 1fr;
  }

  .page-login__process-item {
    padding: 25px;
  }

  .page-login__process-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    top: -10px;
    left: -10px;
  }

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

  .page-login__security-features {
    grid-template-columns: 1fr;
  }

  .page-login__security-card {
    padding: 25px;
  }

  .page-login__security-card-title {
    font-size: 1.2em;
  }

  .page-login__faq-question {
    padding: 18px 20px;
    font-size: 1.1em;
  }

  .page-login__faq-toggle {
    font-size: 1.3em;
  }

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

  .page-login__cta-bottom {
    padding: 60px 15px;
  }

  .page-login__cta-button--large,
  .page-login__secondary-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
    width: 100%;
    box-sizing: border-box;
  }

  /* Mobile content area images must be responsive */
  .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__form-container {
    padding: 20px;
  }

  .page-login__form-title {
    font-size: 1.5em;
  }

  .page-login__process-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
    top: -8px;
    left: -8px;
  }
}

/* Ensure all content area images are at least 200px wide/high if not max-width: 100% */
.page-login__hero-image,
.page-login__process-image,
.page-login__security-image,
.page-login__faq-image,
.page-login__call-to-action-image {
  min-width: 200px;
  min-height: 200px;
}