.page-login-portal-how-to-login {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-login-portal-how-to-login__bg--light {
  background-color: #ffffff;
}

.page-login-portal-how-to-login__bg--dark {
  background-color: #003366;
  color: #e0e0e0;
}

.page-login-portal-how-to-login__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-login-portal-how-to-login__bg--dark .page-login-portal-how-to-login__section-title {
  color: #FFCC00;
}

.page-login-portal-how-to-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-portal-how-to-login__text-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555;
}

.page-login-portal-how-to-login__text-intro--light {
  color: #e0e0e0;
}

.page-login-portal-how-to-login__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-login-portal-how-to-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
}

.page-login-portal-how-to-login__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-login-portal-how-to-login__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-login-portal-how-to-login__button {
  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.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-login-portal-how-to-login__button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-login-portal-how-to-login__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-login-portal-how-to-login__button--secondary {
  background-color: #004d99;
  color: #ffffff;
  border: 2px solid #FFCC00;
}

.page-login-portal-how-to-login__button--secondary:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
}

.page-login-portal-how-to-login__content-section {
  padding: 80px 0;
}

.page-login-portal-how-to-login__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-login-portal-how-to-login__step-card {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.page-login-portal-how-to-login__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-login-portal-how-to-login__step-icon {
  background-color: #FFCC00;
  color: #003366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-login-portal-how-to-login__step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login-portal-how-to-login__step-description {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-login-portal-how-to-login__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-login-portal-how-to-login__text-outro {
  font-size: 1.1em;
  text-align: center;
  margin-top: 60px;
  color: #555;
}

.page-login-portal-how-to-login__text-outro--light {
  color: #e0e0e0;
}

.page-login-portal-how-to-login__troubleshooting-section {
  padding: 80px 0;
}

.page-login-portal-how-to-login__troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-login-portal-how-to-login__troubleshooting-item {
  background-color: #004d99;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid #005fbd;
  transition: background-color 0.3s ease;
}

.page-login-portal-how-to-login__troubleshooting-item:hover {
  background-color: #0059b3;
}

.page-login-portal-how-to-login__troubleshooting-title {
  font-size: 1.4em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-login-portal-how-to-login__troubleshooting-description {
  color: #cce0ff;
  font-size: 0.95em;
}

.page-login-portal-how-to-login__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-login-portal-how-to-login__security-section {
  padding: 80px 0;
  text-align: center;
}

.page-login-portal-how-to-login__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-login-portal-how-to-login__security-item {
  background-color: #fefefe;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  text-align: left;
}

.page-login-portal-how-to-login__security-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-login-portal-how-to-login__security-description {
  color: #555;
  font-size: 0.95em;
}

.page-login-portal-how-to-login__security-image {
  max-width: 400px;
  height: auto;
  margin-top: 60px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-login-portal-how-to-login__faq-section {
  padding: 80px 0;
}

.page-login-portal-how-to-login__faq-list {
  margin-top: 50px;
}

.page-login-portal-how-to-login__faq-item {
  background-color: #004d99;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #005fbd;
}

.page-login-portal-how-to-login__faq-question {
  font-size: 1.3em;
  color: #FFCC00;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  font-weight: bold;
}

.page-login-portal-how-to-login__faq-answer {
  color: #cce0ff;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-login-portal-how-to-login__faq-item.active .page-login-portal-how-to-login__faq-answer {
  max-height: 200px; /* Adjust based on expected content length */
  margin-top: 15px;
}

.page-login-portal-how-to-login__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  line-height: 1;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-login-portal-how-to-login__faq-item.active .page-login-portal-how-to-login__faq-question::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-login-portal-how-to-login__cta-final {
  padding: 80px 0;
  text-align: center;
}

.page-login-portal-how-to-login__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
}

.page-login-portal-how-to-login__cta-image {
  max-width: 600px;
  height: auto;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-login-portal-how-to-login__hero-title {
    font-size: 2.8em;
  }
  .page-login-portal-how-to-login__hero-subtitle {
    font-size: 1.2em;
  }
  .page-login-portal-how-to-login__section-title {
    font-size: 2em;
  }
  .page-login-portal-how-to-login__steps-grid, 
  .page-login-portal-how-to-login__troubleshooting-grid,
  .page-login-portal-how-to-login__security-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-login-portal-how-to-login__hero-section,
  .page-login-portal-how-to-login__content-section,
  .page-login-portal-how-to-login__troubleshooting-section,
  .page-login-portal-how-to-login__security-section,
  .page-login-portal-how-to-login__faq-section,
  .page-login-portal-how-to-login__cta-final {
    padding: 60px 0;
  }
  .page-login-portal-how-to-login__hero-title {
    font-size: 2.2em;
  }
  .page-login-portal-how-to-login__hero-subtitle {
    font-size: 1em;
  }
  .page-login-portal-how-to-login__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-login-portal-how-to-login__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-login-portal-how-to-login__section-title {
    font-size: 1.8em;
  }
  .page-login-portal-how-to-login__text-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-login-portal-how-to-login__step-title,
  .page-login-portal-how-to-login__troubleshooting-title,
  .page-login-portal-how-to-login__security-title,
  .page-login-portal-how-to-login__faq-question {
    font-size: 1.2em;
  }
  .page-login-portal-how-to-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-login-portal-how-to-login__cta-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-login-portal-how-to-login__hero-title {
    font-size: 1.8em;
  }
  .page-login-portal-how-to-login__hero-subtitle {
    font-size: 0.9em;
  }
  .page-login-portal-how-to-login__button {
    padding: 12px 20px;
    font-size: 1em;
    width: 90%;
  }
  .page-login-portal-how-to-login__section-title {
    font-size: 1.5em;
  }
  .page-login-portal-how-to-login__step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}