.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); /* Ensure content is not hidden by fixed header */
}

.page-login__hero-section {
  background-color: #f0f0f0; /* Light background for the hero section */
  padding: 60px 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-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-login__main-heading {
  font-size: 2.8em;
  color: #000000; /* Main color for heading */
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-login__intro-text {
  font-size: 1.2em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-login__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-width: 180px;
  text-align: center;
}

.page-login__button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Text color for login button */
  border: 2px solid #FCBC45;
}

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

.page-login__button--register {
  background-color: #000000; /* Register button color */
  color: #FFFFFF; /* Text color for register button */
  border: 2px solid #000000;
}

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

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

.page-login__article {
  background-color: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-login__section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-login__section-content p {
  font-size: 1.1em;
  color: #333333;
  text-align: justify;
  max-width: 900px;
}

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

.page-login__ordered-list,
.page-login__unordered-list {
  list-style-position: inside;
  text-align: left;
  font-size: 1.1em;
  color: #333333;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
}

.page-login__ordered-list li,
.page-login__unordered-list li {
  margin-bottom: 10px;
}

.page-login__ordered-list li strong {
  color: #000000;
}

.page-login__button--login-guide {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  margin-top: 20px;
}

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

.page-login__faq-container {
  max-width: 900px;
  margin: 20px auto;
  width: 100%;
}

.page-login__faq-item {
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

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

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

.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: 15px 20px;
  background-color: #ffffff;
  color: #333333;
  border-top: 1px solid #eee;
  font-size: 1em;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .page-login__main-heading {
    font-size: 2em;
  }

  .page-login__intro-text {
    font-size: 1em;
  }

  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-login__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

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

  .page-login__section-content {
    flex-direction: column;
  }

  .page-login__section-content p,
  .page-login__ordered-list,
  .page-login__unordered-list {
    font-size: 0.95em;
  }

  /* Mobile content image constraint */
  .page-login img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__hero-section {
    padding: 40px 15px;
  }

  .page-login__main-heading {
    font-size: 1.8em;
  }

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

  .page-login__article {
    padding: 20px 15px;
  }

  .page-login__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }

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