.page-login {
  color: #ffffff; /* Text color for dark body background #111 */
  background-color: #0A0A0A; /* Dark background for the main content area */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-login__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

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

.page-login__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for text readability */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease-out;
}

.page-login__main-heading {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main heading */
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  line-height: 1.2;
}

.page-login__sub-heading {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-login__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-login__btn--primary {
  background-color: #DC143C; /* Action red */
  color: #FFFFFF;
  border: 2px solid #DC143C;
}

.page-login__btn--primary:hover {
  background-color: #c01030;
  border-color: #c01030;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-login__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold for secondary */
  border: 2px solid #FFD700;
}

.page-login__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A0A0A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-login__section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-login__section:last-of-type {
  border-bottom: none;
}

.page-login__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

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

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

.page-login__section-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure content images are not too wide */
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

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

.page-login__process-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #1E90FF;
}

.page-login__process-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.page-login__security-list, .page-login__features-list, .page-login__troubleshooting-list, .page-login__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-login__security-item, .page-login__feature-item, .page-login__troubleshooting-item, .page-login__benefit-item {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-login__security-item:hover, .page-login__feature-item:hover, .page-login__troubleshooting-item:hover, .page-login__benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.page-login__security-item-title, .page-login__feature-title, .page-login__troubleshooting-item-title, .page-login__benefit-title {
  font-size: 1.4em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-login__security-item-description, .page-login__feature-description, .page-login__troubleshooting-item-description, .page-login__benefit-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #b0b0b0;
}

.page-login__faq-items {
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-login__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.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;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

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

.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;
  font-size: 1em;
  line-height: 1.7;
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.03);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-login__main-heading {
    font-size: 3em;
  }
  .page-login__section-title {
    font-size: 2.2em;
  }
  .page-login__section-image {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-login__hero-section {
    height: auto;
    min-height: 70vh;
    padding: 40px 15px;
  }
  .page-login__hero-content {
    padding: 30px;
  }
  .page-login__main-heading {
    font-size: 2.5em;
  }
  .page-login__sub-heading {
    font-size: 1.1em;
  }
  .page-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__btn {
    width: 100%;
    padding: 12px 20px;
  }
  .page-login__section {
    padding: 60px 0;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__section-description {
    font-size: 1em;
  }
  .page-login__process-list, .page-login__security-list, .page-login__features-list, .page-login__troubleshooting-list, .page-login__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-login__section-image {
    max-width: 100%; /* Important for mobile overflow */
    height: auto; /* Important for mobile overflow */
  }
  .page-login__container {
    padding: 0 15px;
  }
  /* Ensure all content images within .page-login are responsive and don't overflow */
  .page-login img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__hero-content {
    padding: 20px;
  }
  .page-login__main-heading {
    font-size: 2em;
  }
  .page-login__sub-heading {
    font-size: 0.95em;
  }
  .page-login__process-item, .page-login__security-item, .page-login__feature-item, .page-login__troubleshooting-item, .page-login__benefit-item {
    padding: 20px;
  }
  .page-login__process-step-title, .page-login__security-item-title, .page-login__feature-title, .page-login__troubleshooting-item-title, .page-login__benefit-title {
    font-size: 1.2em;
  }
  .page-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-login__faq-answer {
    padding: 15px 20px;
  }
}