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

.page-login__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0A2342; /* Primary dark blue background */
  color: #ffffff;
  padding: 0;
}

.page-login__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the image to make text stand out */
}

.page-login__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 20px;
  z-index: 10;
}

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

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

.page-login__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 10px;
  font-size: 1.1em;
}

.page-login__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text */
}

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

.page-login__button--secondary {
  background-color: #0A2342; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

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

.page-login__form-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

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

.page-login__form-title {
  font-size: 2.2em;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-login__form-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 30px;
}

.page-login__form-group {
  margin-bottom: 20px;
  text-align: left;
}

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

.page-login__form-input {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1em;
}

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

.page-login__form-options {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
}

.page-login__forgot-password {
  color: #0A2342;
  text-decoration: none;
  font-size: 0.9em;
}

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

.page-login__button--submit {
  width: 100%;
  background-color: #FFD700;
  color: #0A2342;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-login__process-section, .page-login__security-section, .page-login__faq-section, .page-login__cta-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.page-login__process-section:nth-child(odd) {
  background-color: #f0f0f0;
}

.page-login__process-section:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image/text layout */
}

.page-login__content-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-login__section-title {
  font-size: 2.5em;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-login__section-intro {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-login__process-list,
.page-login__security-list {
  list-style: none;
  padding: 0;
}

.page-login__process-item,
.page-login__security-item {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-login__process-step-title,
.page-login__security-tip-title {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-login__process-step-description,
.page-login__security-tip-description {
  color: #666666;
}

.page-login__process-image, .page-login__security-image, .page-login__cta-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-login__faq-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-login__faq-question {
  width: 100%;
  background-color: #0A2342;
  color: #ffffff;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

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

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

.page-login__faq-answer {
  padding: 0 25px;
  background-color: #f5f5f5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-login__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px;
}

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

.page-login__cta-section {
  background-color: #0A2342;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  gap: 60px;
}

.page-login__cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-login__hero-title {
    font-size: 2.8em;
  }
  .page-login__hero-description {
    font-size: 1.1em;
  }
  .page-login__section-title {
    font-size: 2.2em;
  }
  .page-login__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-login {
    padding-top: var(--header-offset, 100px);
  }
  .page-login__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-login__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-login__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-login__button {
    padding: 10px 20px;
    font-size: 1em;
    margin: 0 5px;
  }
  .page-login__form-container {
    padding: 30px;
  }
  .page-login__form-title {
    font-size: 1.8em;
  }
  .page-login__process-section, .page-login__security-section, .page-login__faq-section, .page-login__cta-section {
    flex-direction: column;
    padding: 40px 15px;
    gap: 30px;
  }
  .page-login__content-wrapper, .page-login__process-image, .page-login__security-image, .page-login__cta-image {
    width: 100%;
    max-width: 100%;
  }
  .page-login__process-image img, .page-login__security-image img, .page-login__cta-image img {
    max-width: 100%;
    height: auto;
  }
  .page-login__section-title {
    font-size: 2em;
    text-align: center;
  }
  .page-login__section-intro {
    text-align: center;
  }
  .page-login__process-item, .page-login__security-item {
    padding: 20px;
  }
  .page-login__process-step-title, .page-login__security-tip-title {
    font-size: 1.2em;
  }
  .page-login__cta-title {
    font-size: 2em;
  }
  .page-login__cta-description {
    font-size: 1.1em;
  }
  .page-login__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
}