.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

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

.page-login__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  background-color: #1A202C;
}

.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__hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.page-login__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  font-weight: bold;
}

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

.page-login__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-login__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-login__cta-button--primary {
  background-color: #FFD700; /* Accent color */
  color: #1A202C;
}

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

.page-login__cta-button--secondary {
  background-color: #333d4d; /* Darker variant of primary */
  color: #FFD700;
  border: 2px solid #FFD700;
}

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

.page-login__info-section, .page-login__process-section, .page-login__security-section, .page-login__faq-section, .page-login__call-to-action {
  padding: 60px 0;
  background-color: #1A202C;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-login__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

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

.page-login__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-login__process-intro, .page-login__security-intro, .page-login__faq-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #cccccc;
}

.page-login__process-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
}

.page-login__process-item {
  background-color: #2a3342;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-login__process-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  top: 30px;
  left: -20px;
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-login__process-item:nth-child(n+10)::before {
  content: counter(step-counter);
}

.page-login__process-step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
  padding-left: 40px;
}

.page-login__process-item p {
  font-size: 1em;
  color: #e0e0e0;
  padding-left: 40px;
}

.page-login__process-final {
  font-size: 1.1em;
  text-align: center;
  margin-top: 40px;
  color: #cccccc;
}

.page-login__security-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-login__security-item {
  background-color: #2a3342;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 4px solid #FFD700;
}

.page-login__security-tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-login__security-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-login__faq-item {
  background-color: #2a3342;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid transparent; /* Placeholder for toggle effect */
}

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

.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 25px 20px;
  font-size: 1em;
  color: #cccccc;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-login__faq-item[open] .page-login__faq-question {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-login__call-to-action {
  text-align: center;
  padding: 80px 0;
  background-color: #1A202C;
}

.page-login__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.page-login__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-login__hero-title {
    font-size: 2.8em;
  }
  .page-login__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-login {
    padding-top: var(--header-offset, 80px);
  }
  .page-login__hero-title {
    font-size: 2.2em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-login__process-item::before {
    position: static;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
  .page-login__process-step-title, .page-login__process-item p {
    padding-left: 0;
  }
  .page-login__security-list {
    grid-template-columns: 1fr;
  }
  .page-login__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-login__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-login__text-content img,
  .page-login__security-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__hero-title {
    font-size: 1.8em;
  }
  .page-login__hero-description {
    font-size: 0.9em;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__cta-title {
    font-size: 2em;
  }
  .page-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-login__faq-answer {
    padding: 10px 20px 15px;
  }
}