.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); /* Fixed header offset for desktop */
}

.page-login__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #1A202C; /* Main brand color */
  color: #ffffff;
  padding: 60px 20px;
  gap: 30px;
}

.page-login__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-login__main-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-login__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-login__button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color for buttons */
  color: #1A202C; /* Dark text on gold button */\  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-login__button--primary {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-login__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  display: block;
}

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

.page-login__section-title {
  font-size: 2.2em;
  color: #1A202C; /* Main brand color */
  text-align: center;
  margin-bottom: 40px;
}

.page-login__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-login__section-text {
  font-size: 1.05em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
}

.page-login__process-layout, .page-login__security-layout {
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

.page-login__process-layout > div, .page-login__security-layout > div {
  flex: 1;
  padding: 20px;
}

.page-login__process-image-wrapper, .page-login__security-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login__process-image, .page-login__security-image, .page-login__faq-image {
  width: 100%;
  max-width: 600px; /* Ensure images don't exceed reasonable size for content */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-login__ordered-list, .page-login__unordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  font-size: 1.05em;
}

.page-login__unordered-list {
  list-style-type: disc;
}

.page-login__list-item {
  margin-bottom: 15px;
}

.page-login__list-item strong {
  color: #1A202C;
}

.page-login__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-login__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-login__faq-item:hover {
  background-color: #f9f9f9;
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #1A202C;
  font-size: 1.1em;
}

.page-login__faq-toggle {
  font-size: 1.5em;
  color: #FFD700;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

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

.page-login__faq-answer {
  padding-top: 15px;
  font-size: 1em;
  color: #555555;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

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

.page-login__faq-image-wrapper {
  margin-top: 40px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 2.4em;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__process-layout, .page-login__security-layout {
    flex-direction: column;
  }
  .page-login__process-image-wrapper, .page-login__security-image-wrapper {
    order: -1; /* Image appears before text on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-login {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile if applicable */
  }
  .page-login__hero-section {
    padding: 40px 15px;
  }
  .page-login__main-title {
    font-size: 2em;
  }
  .page-login__intro-text {
    font-size: 1em;
  }
  .page-login__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-login__button--primary {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-login__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-login__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-login__section-text {
    font-size: 0.95em;
  }
  .page-login__ordered-list, .page-login__unordered-list {
    font-size: 0.95em;
  }
  .page-login__list-item {
    margin-bottom: 10px;
  }
  .page-login__faq-question {
    font-size: 1em;
  }
  .page-login__faq-answer {
    font-size: 0.9em;
  }
  /* Mobile content image responsiveness */
  .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.4em;
  }
  .page-login__button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
  .page-login__hero-content {
    padding: 0 10px;
  }
  .page-login__process-layout > div, .page-login__security-layout > div {
    padding: 10px;
  }
  .page-login__faq-item {
    padding: 10px 15px;
  }
  .page-login__faq-toggle {
    font-size: 1.2em;
  }
}