.page-login {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #FFFFFF; /* Page specific background color */
}

.page-login__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.page-login__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  object-fit: cover;
}

.page-login__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 80%;
  z-index: 10;
}

.page-login__main-title {
  font-size: 3em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-login__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-login__form-section, .page-login__process-section, .page-login__security-section, .page-login__faq-section, .page-login__call-to-action {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-login__form-section {
  background-color: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -80px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-login__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-login__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-login__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.page-login__form-group {
  display: flex;
  flex-direction: column;
}

.page-login__form-label {
  font-size: 1em;
  margin-bottom: 8px;
  color: #000000;
  font-weight: bold;
}

.page-login__form-input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
}

.page-login__form-input:focus {
  border-color: #FCBC45;
  outline: none;
  box-shadow: 0 0 5px rgba(252, 188, 69, 0.5);
}

.page-login__form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-login__submit-button {
  background-color: #FCBC45;
  border: none;
  padding: 0;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.page-login__submit-button:hover {
  background-color: #e0a53a;
}

.page-login__login-button-link {
  display: block;
  padding: 12px 20px;
  color: #000000;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
}

.page-login__register-link, .page-login__forgot-password-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-login__register-link:hover, .page-login__forgot-password-link:hover {
  color: #FCBC45;
}

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

.page-login__process-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-login__process-item:nth-child(odd) {
  background-color: #eeeeee;
}

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

.page-login__process-step-description {
  font-size: 1em;
  color: #555555;
}

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

.page-login__security-card {
  background-color: #000000;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #FFFFFF;
}

.page-login__security-card-image {
  width: 100%; /* Ensure images fill card width */
  max-width: 400px; /* Max width for larger screens */
  height: auto;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-login__security-card-title {
  font-size: 1.3em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-login__security-card-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-login__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-login__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.page-login__faq-question {
  display: block;
  padding: 18px 25px;
  font-size: 1.1em;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

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

.page-login__faq-toggle {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  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: #555555;
}

.page-login__call-to-action {
  text-align: center;
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 40px;
}

.page-login__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-login__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-login__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-login__main-title {
    font-size: 2.5em;
  }
  .page-login__hero-description {
    font-size: 1.1em;
  }
  .page-login__section-title {
    font-size: 2em;
  }
  .page-login__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-login__hero-content {
    max-width: 90%;
  }
  .page-login__main-title {
    font-size: 2em;
  }
  .page-login__hero-description {
    font-size: 1em;
  }
  .page-login__form-section, .page-login__process-section, .page-login__security-section, .page-login__faq-section, .page-login__call-to-action {
    padding: 40px 15px;
  }
  .page-login__form {
    max-width: 100%;
  }
  .page-login__process-list, .page-login__security-grid {
    grid-template-columns: 1fr;
  }
  .page-login__cta-title {
    font-size: 1.8em;
  }
  .page-login__cta-description {
    font-size: 1em;
  }
  .page-login__hero-image,
  .page-login__security-card-image {
    max-width: 100%;
    width: 100%; /* Ensure images do not overflow */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__main-title {
    font-size: 1.8em;
  }
  .page-login__hero-description {
    font-size: 0.9em;
  }
  .page-login__section-title {
    font-size: 1.8em;
  }
  .page-login__form-input, .page-login__login-button-link {
    font-size: 0.9em;
  }
  .page-login__cta-title {
    font-size: 1.6em;
  }
  .page-login__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}