.page-login {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-login__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  background-color: #000000; /* Dark background for hero content */
  padding: 80px 20px;
  overflow: hidden; /* For image positioning */
}

.page-login__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5; /* Slightly dim image to make text readable */
}

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

.page-login__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

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

.page-login__cta-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.2s ease;
  margin: 10px;
  white-space: nowrap;
}

.page-login__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-login__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-login__module {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-login__module-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-login__module-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-login__cta-wrapper {
  text-align: center;
  margin-top: 30px;
}

.page-login__cta-button--learn-more,
.page-login__cta-button--login-access,
.page-login__cta-button--final-login {
  background-color: #FCBC45;
  color: #000000;
}

.page-login__cta-button--learn-more:hover,
.page-login__cta-button--login-access:hover,
.page-login__cta-button--final-login:hover {
  background-color: #e0a73d;
  transform: translateY(-2px);
}

.page-login__cta-button--register-alt,
.page-login__cta-button--security-guide,
.page-login__cta-button--more-faq,
.page-login__cta-button--final-register {
  background-color: #000000;
  color: #FFFFFF;
}

.page-login__cta-button--register-alt:hover,
.page-login__cta-button--security-guide:hover,
.page-login__cta-button--more-faq:hover,
.page-login__cta-button--final-register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

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

.page-login__process-step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

.page-login__process-image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-login__process-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

.page-login__security-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-top: 3px solid #000000;
}

.page-login__security-item-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-login__security-image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-login__security-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

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

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

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

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

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

.page-login__faq-answer {
  padding: 20px 25px;
  background-color: #ffffff;
  color: #333333;
  font-size: 1em;
}

.page-login__additional-info-title,
.page-login__cta-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
}

.page-login__additional-info-description,
.page-login__cta-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-login__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-login__feature-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  border-bottom: 3px solid #FCBC45;
}

.page-login__feature-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-login__feature-link {
  display: inline-block;
  margin-top: 15px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-login__feature-link:hover {
  color: #e0a73d;
  text-decoration: underline;
}

.page-login__platform-image-wrapper {
  text-align: center;
  margin: 50px 0;
}

.page-login__platform-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

.page-login__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-login__cta-section .page-login__cta-title {
  color: #FCBC45;
}

.page-login__cta-section .page-login__cta-description {
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-login__hero-section {
    padding: 60px 15px;
  }

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

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

  .page-login__cta-button {
    padding: 12px 20px;
    font-size: 1em;
    margin: 5px;
  }

  .page-login__module {
    margin: 40px auto;
    padding: 30px 15px;
  }

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

  .page-login__process-item,
  .page-login__security-item {
    padding: 20px;
  }

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

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

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

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

  .page-login__platform-image,
  .page-login__security-image,
  .page-login__process-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  .page-login__additional-info-title,
  .page-login__cta-title {
    font-size: 1.8em;
  }

  .page-login__additional-info-description,
  .page-login__cta-description {
    font-size: 1em;
  }

  /* Ensure no horizontal overflow */
  .page-login {
    overflow-x: hidden;
  }

  .page-login__hero-section .page-login__hero-image {
    max-width: 100%;
    height: auto;
  }
}