.page-login {
  color: #333333; /* Default text color for 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 {
  background-color: #003366; /* Dark blue background for hero */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

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

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

.page-login__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-login__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for main title */
  line-height: 1.2;
}

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

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

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

.page-login__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-login__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-login__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-login__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-login__btn--link {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
  padding: 10px 20px;
  font-size: 1em;
}

.page-login__btn--link:hover {
  background-color: #003366;
  color: #ffffff;
}

.page-login__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

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

.page-login__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
  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: #FFCC00;
  border-radius: 2px;
}

.page-login__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-login__ordered-list,
.page-login__unordered-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-login__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #003366;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-login__ordered-list .page-login__list-item {
  counter-increment: list-counter;
  position: relative;
  padding-left: 60px;
}

.page-login__ordered-list .page-login__list-item::before {
  content: counter(list-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FFCC00;
  color: #003366;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-login__list-title {
  color: #003366;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-login__list-item p {
  font-size: 1em;
  color: #555555;
}

/* FAQ Section Styling */
.page-login__faq-section {
  background-color: #f0f5fa;
}

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

.page-login__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  background-color: #003366;
  color: #ffffff;
  font-size: 1.25em;
  font-weight: bold;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-login__faq-icon {
  font-size: 1.5em;
  transition: transform 0.3s ease;
  color: #FFCC00;
}

.page-login__faq-question[aria-expanded="true"] .page-login__faq-icon {
  transform: rotate(45deg);
}

.page-login__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #fdfdfd;
  color: #444444;
}

.page-login__faq-answer p {
  padding-bottom: 20px;
  margin-top: 0;
}

.page-login__faq-question[aria-expanded="true"] + .page-login__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
  padding-bottom: 20px;
}

.page-login__cta-section {
  background-color: #003366;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-login__cta-content {
  max-width: 900px;
}

.page-login__cta-section .page-login__section-title {
  color: #FFCC00;
}

.page-login__cta-section .page-login__text-block {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
  .page-login {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-login__hero-section {
    padding: 60px 15px;
    min-height: 350px;
  }
  .page-login__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-login__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-login__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-login__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-login__content-section {
    padding: 40px 0;
  }
  .page-login__container {
    padding: 0 15px;
  }
  .page-login__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-login__text-block {
    font-size: 1em;
  }
  .page-login__list-item {
    padding: 15px;
    border-left-width: 4px;
  }
  .page-login__ordered-list .page-login__list-item::before {
    left: 15px;
    top: 15px;
    width: 25px;
    height: 25px;
    font-size: 1em;
  }
  .page-login__list-title {
    font-size: 1.2em;
  }
  .page-login__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-login__faq-answer p {
    padding-bottom: 15px;
  }
  .page-login__cta-section {
    padding: 60px 15px;
  }

  /* Mobile image overflow prevention */
  .page-login img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-login__main-title {
    font-size: 1.8em;
  }
  .page-login__section-title {
    font-size: 1.5em;
  }
  .page-login__faq-question {
    font-size: 1em;
  }
}