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

.page-login__hero-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-login__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
  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;
  color: #f0f0f0;
}

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

.page-login__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

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

.page-login__section-title {
  font-size: 2.2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 3px solid #FFD700;
  padding-bottom: 10px;
}

.page-login__subsection-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-login__text-block p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

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

.page-login__process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
}

.page-login__process-item:last-child {
  margin-bottom: 0;
}

.page-login__process-step-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  position: relative;
}

.page-login__process-step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FFD700;
  color: #0A2463;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.page-login__process-item p {
  max-width: 700px;
  font-size: 1.1em;
}

.page-login__process-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-login__security-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-top: 20px;
}

.page-login__security-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-login__security-item strong {
  color: #0A2463;
}

.page-login__faq-container {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  position: relative;
}

.page-login__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #0A2463;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  user-select: none;
}

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

.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: 15px 25px 20px;
  font-size: 1.05em;
  color: #555;
}

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

.page-login__call-to-action {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-top: 50px;
}

.page-login__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-login__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-login__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

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

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

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

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

.page-login__button--tertiary {
  background-color: #0A2463;
  color: #FFD700;
  border: 2px solid #0A2463;
  margin-top: 20px;
}

.page-login__button--tertiary:hover {
  background-color: #1a3c7a;
  transform: translateY(-2px);
}

@media (min-width: 769px) {
  .page-login__process-list {
    counter-reset: step-counter;
  }
  .page-login__process-item {
    flex-direction: row;
    text-align: left;
    gap: 30px;
  }
  .page-login__process-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-login__process-item p {
    max-width: none;
  }
  .page-login__process-item > *:not(.page-login__process-image) {
    flex: 1;
  }
  .page-login__process-image {
    flex-shrink: 0;
    max-width: 400px;
  }
  .page-login__process-step-title::before {
    position: absolute;
    left: -70px;
    top: 0;
    margin-bottom: 0;
  }
  .page-login__process-item:nth-child(even) .page-login__process-step-title::before {
    left: auto;
    right: -70px;
  }
}

@media (max-width: 768px) {
  .page-login__hero-title {
    font-size: 2.2em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__subsection-title {
    font-size: 1.4em;
  }
  .page-login__text-block p, .page-login__security-item, .page-login__faq-answer p {
    font-size: 0.95em;
  }
  .page-login__process-step-title {
    font-size: 1.5em;
  }
  .page-login__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-login__cta-title {
    font-size: 2em;
  }
  .page-login__cta-description {
    font-size: 1em;
  }
  /* Mobile content area images must not overflow */
  .page-login img {
    max-width: 100%;
    height: auto;
  }
  .page-login__content-area {
    padding: 15px;
  }
  .page-login__process-item, .page-login__faq-item {
    padding: 15px;
  }
  .page-login__process-step-title::before {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-login__hero-section, .page-login__call-to-action {
    padding: 50px 15px;
  }
  .page-login__hero-title {
    font-size: 1.8em;
  }
  .page-login__section-title {
    font-size: 1.6em;
  }
  .page-login__cta-title {
    font-size: 1.8em;
  }
}