.page-login {
  color: #ffffff; /* Light text on dark body background */
  padding-top: var(--header-offset, 120px);
}

.page-login__hero-section {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(255, 215, 0, 0.6));
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

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

.page-login__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-login__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 10px;
  border: 2px solid transparent;
}

.page-login__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-login__hero-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.page-login__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  transform: translateY(-3px);
}

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

.page-login__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-login__section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-login__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-login__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #8B0000;
  border-radius: 2px;
}

.page-login__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-login__process-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-login__process-item:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.12);
}

.page-login__process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #8B0000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-login__process-step-description {
  font-size: 1.05em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-login__process-step-description strong {
  color: #FFD700;
}

.page-login__button {
  display: block;
  width: fit-content;
  margin: 0 auto 20px auto;
  background-color: #8B0000;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

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

.page-login__button--info {
  background-color: transparent;
  border-color: #8B0000;
  color: #8B0000;
}

.page-login__button--info:hover {
  background-color: rgba(139, 0, 0, 0.2);
  color: #FFD700;
}

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

.page-login__security-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(139, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.page-login__security-item:hover {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.page-login__security-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-login__security-heading {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-login__security-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

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

.page-login__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-login__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
  user-select: none;
}

.page-login__faq-question:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.page-login__faq-toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: #8B0000;
  transition: transform 0.3s ease;
}

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

.page-login__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #e0e0e0;
  line-height: 1.7;
  animation: fadein 0.3s ease-out;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
  .page-login__hero-section {
    padding: 60px 20px;
  }
  .page-login__hero-title {
    font-size: 2.2em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-bottom: 15px;
  }
  .page-login__hero-button--secondary {
    margin-top: 10px;
  }
  .page-login__section {
    margin: 40px auto;
    padding: 30px 15px;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__section-text {
    font-size: 0.95em;
  }
  .page-login__process-item {
    padding: 20px;
  }
  .page-login__process-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }
  .page-login__security-grid {
    grid-template-columns: 1fr;
  }
  .page-login__security-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .page-login__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-login__faq-toggle {
    right: 20px;
  }
  .page-login__faq-answer {
    padding: 0 20px 18px 20px;
  }
  .page-login img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-login__security-item img {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-login__hero-title {
    font-size: 1.8em;
  }
  .page-login__hero-description {
    font-size: 0.9em;
  }
  .page-login__hero-button {
    width: 100%;
    margin: 10px 0;
  }
  .page-login__section-title {
    font-size: 1.5em;
  }
  .page-login__section-text {
    font-size: 0.9em;
  }
  .page-login__button {
    width: 100%;
  }
  .page-login__faq-question {
    font-size: 1em;
  }
}