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

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

.page-login-portal-otp-login__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-login-portal-otp-login__container--reverse {
  flex-direction: row-reverse;
}

.page-login-portal-otp-login__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3); /* Darker blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-login-portal-otp-login__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-login-portal-otp-login__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-login-portal-otp-login__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-login-portal-otp-login__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-login-portal-otp-login__button--primary {
  background-color: #FFC107; /* Accent color */
  color: #000; /* High contrast dark text */
}

.page-login-portal-otp-login__button--primary:hover {
  background-color: #e0a800; /* Slightly darker accent */
  transform: translateY(-2px);
}

.page-login-portal-otp-login__button--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #FFC107;
}

.page-login-portal-otp-login__button--secondary:hover {
  background-color: #FFC107;
  color: #000;
  transform: translateY(-2px);
}

.page-login-portal-otp-login__content-section {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-login-portal-otp-login__section--why-otp {
  background-color: #f0f8ff;
}

.page-login-portal-otp-login__section--how-to {
  background-color: #fff;
}

.page-login-portal-otp-login__section--troubleshooting {
  background-color: #f0f8ff;
}

.page-login-portal-otp-login__section--benefits {
  background-color: #fff;
}

.page-login-portal-otp-login__faq-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.page-login-portal-otp-login__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-login-portal-otp-login__sub-section-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker primary for contrast */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-login-portal-otp-login__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-login-portal-otp-login__text-content {
  flex: 2;
}

.page-login-portal-otp-login__image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login-portal-otp-login__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-login-portal-otp-login__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #007BFF;
}

.page-login-portal-otp-login__step-card:hover {
  transform: translateY(-5px);
}

.page-login-portal-otp-login__step-icon-wrapper {
  background-color: #007BFF;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-login-portal-otp-login__step-title {
  font-size: 1.4em;
  color: #0056b3;
  margin-bottom: 10px;
}

.page-login-portal-otp-login__step-description {
  color: #666;
}

.page-login-portal-otp-login__image-step-wrapper {
  grid-column: 1 / -1; /* Span across all columns */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

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

.page-login-portal-otp-login ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-login-portal-otp-login ul li {
  background-color: #e9f7ff; /* Lighter blue */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #007BFF;
  border-radius: 5px;
  color: #333;
  font-size: 1.05em;
}

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

.page-login-portal-otp-login__benefit-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border-bottom: 5px solid #FFC107;
}

.page-login-portal-otp-login__benefit-card:hover {
  transform: translateY(-5px);
}

.page-login-portal-otp-login__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-login-portal-otp-login__benefit-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-login-portal-otp-login__benefit-description {
  color: #666;
}

.page-login-portal-otp-login__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login-portal-otp-login__faq-question {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-login-portal-otp-login__faq-answer {
  color: #555;
  font-size: 1.05em;
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-login-portal-otp-login__hero-title {
    font-size: 2.8em;
  }

  .page-login-portal-otp-login__hero-subtitle {
    font-size: 1.1em;
  }

  .page-login-portal-otp-login__section-title {
    font-size: 2em;
  }

  .page-login-portal-otp-login__sub-section-title {
    font-size: 1.6em;
  }

  .page-login-portal-otp-login__container--flex {
    flex-direction: column;
  }

  .page-login-portal-otp-login__container--reverse {
    flex-direction: column;
  }

  .page-login-portal-otp-login__text-content, .page-login-portal-otp-login__image-wrapper {
    flex: none;
    width: 100%;
  }

  .page-login-portal-otp-login__image-wrapper {
    margin-top: 30px;
  }

  .page-login-portal-otp-login__image-step-wrapper {
    margin-top: 30px;
  }

  .page-login-portal-otp-login__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-login-portal-otp-login__hero-section {
    padding: 80px 0;
  }

  .page-login-portal-otp-login__hero-title {
    font-size: 2.2em;
  }

  .page-login-portal-otp-login__hero-subtitle {
    font-size: 1em;
  }

  .page-login-portal-otp-login__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-login-portal-otp-login__content-section {
    padding: 60px 0;
  }

  .page-login-portal-otp-login__section-title {
    font-size: 1.8em;
  }

  .page-login-portal-otp-login__sub-section-title {
    font-size: 1.4em;
  }

  .page-login-portal-otp-login__steps-grid, .page-login-portal-otp-login__benefits-grid {
    grid-template-columns: 1fr;
  }
}