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

.page-login__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f5f5; /* Light background for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-login__main-title {
  font-size: 3.2em;
  color: #8B0000; /* Dark Red for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-login__hero-description {
  font-size: 1.3em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-login__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Gold button background */
  color: #8B0000; /* Dark Red text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-login__button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-login__register-button {
  background-color: #8B0000; /* Dark Red button background */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #8B0000;
}

.page-login__register-button:hover {
  background-color: #6b0000; /* Darker red on hover */
  transform: translateY(-3px);
}

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

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

.page-login__section-title {
  font-size: 2.2em;
  color: #8B0000; /* Dark Red for section titles */
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-login__text-content {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-login__ordered-list,
.page-login__unordered-list {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-login__ordered-list {
  list-style-type: decimal;
}

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

.page-login__list-item {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 10px;
}

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

.page-login__support-button,
.page-login__explore-button {
  margin-top: 20px;
}

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

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

.page-login__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #8B0000; /* Dark Red for FAQ questions */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-login__faq-toggle {
  font-size: 1.5em;
  color: #FFD700; /* Gold for toggle icon */
  transition: transform 0.3s ease;
}

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

.page-login__faq-answer {
  padding: 0 25px 20px;
  font-size: 1.1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 2.8em;
  }
  .page-login__section-title {
    font-size: 2em;
  }
  .page-login__hero-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .page-login__main-title {
    font-size: 2.2em;
  }
  .page-login__hero-description {
    font-size: 1.1em;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-login__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__content-area {
    padding: 40px 15px;
  }
  .page-login__text-content,
  .page-login__list-item,
  .page-login__faq-answer p {
    font-size: 1em;
  }
  .page-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-login__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-login__explore-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-login__main-title {
    font-size: 1.8em;
  }
  .page-login__section-title {
    font-size: 1.6em;
  }
  .page-login__hero-section {
    padding: 40px 15px;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}