/* style/login-portal-secure-login-tips.css */
.page-login-portal-secure-login-tips {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-login-portal-secure-login-tips__hero-section {
  background: linear-gradient(135deg, #003366 0%, #003366 60%, #FFCC00 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-login-portal-secure-login-tips__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-login-portal-secure-login-tips__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-login-portal-secure-login-tips__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-login-portal-secure-login-tips__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-login-portal-secure-login-tips__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

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

.page-login-portal-secure-login-tips__button--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-login-portal-secure-login-tips__button--secondary:hover {
  background-color: rgba(255, 204, 0, 0.1);
  transform: translateY(-3px);
}

.page-login-portal-secure-login-tips__content-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-login-portal-secure-login-tips__section-title {
  font-size: 2.2em;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-login-portal-secure-login-tips__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-secure-login-tips__sub-section-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-login-portal-secure-login-tips__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-login-portal-secure-login-tips__text a {
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
}

.page-login-portal-secure-login-tips__text a:hover {
  color: #FFCC00;
}

.page-login-portal-secure-login-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #555;
}

.page-login-portal-secure-login-tips__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-login-portal-secure-login-tips__list li strong {
  color: #003366;
}

.page-login-portal-secure-login-tips__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-login-portal-secure-login-tips__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-login-portal-secure-login-tips__hero-title {
    font-size: 2.2em;
  }

  .page-login-portal-secure-login-tips__hero-subtitle {
    font-size: 1em;
  }

  .page-login-portal-secure-login-tips__section-title {
    font-size: 1.8em;
  }

  .page-login-portal-secure-login-tips__sub-section-title {
    font-size: 1.5em;
  }

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

  .page-login-portal-secure-login-tips__hero-cta,
  .page-login-portal-secure-login-tips__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-login-portal-secure-login-tips__button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-login-portal-secure-login-tips__hero-title {
    font-size: 1.8em;
  }

  .page-login-portal-secure-login-tips__section-title {
    font-size: 1.5em;
  }

  .page-login-portal-secure-login-tips__sub-section-title {
    font-size: 1.3em;
  }

  .page-login-portal-secure-login-tips__button {
    font-size: 0.9em;
  }
}