/* style/register-login-faq.css */
.page-register-login-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8; /* Light background for readability */
}

.page-register-login-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-register-login-faq__hero-section {
  background: linear-gradient(135deg, #FFD700, #000080); /* Gold to Navy Blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-register-login-faq__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #eee;
}

.page-register-login-faq__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-register-login-faq__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.page-register-login-faq__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Navy Blue */
  border-color: #FFD700;
}

.page-register-login-faq__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-register-login-faq__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border-color: #FFD700;
}

.page-register-login-faq__btn--secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

.page-register-login-faq__content-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-register-login-faq__article {
  margin-bottom: 50px;
  padding: 30px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register-login-faq__section-title {
  font-size: 2em;
  color: #000080; /* Navy Blue */
  margin-bottom: 25px;
  border-bottom: 3px solid #FFD700; /* Gold underline */
  padding-bottom: 10px;
}

.page-register-login-faq__sub-section-title {
  font-size: 1.5em;
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-register-login-faq__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 25px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-register-login-faq__list {
  list-style: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-register-login-faq__list--bullet {
  list-style: disc;
}

.page-register-login-faq__list li {
  margin-bottom: 10px;
  color: #444;
}

.page-register-login-faq__text-link {
  color: #000080; /* Navy Blue for text links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-register-login-faq__text-link:hover {
  color: #FFD700; /* Gold on hover */
}

.page-register-login-faq__conclusion {
  text-align: center;
  padding: 40px;
  background-color: #f0f8ff; /* Light blue tint */
  border-radius: 8px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-register-login-faq__conclusion .page-register-login-faq__section-title {
  border-bottom: none;
  color: #000080;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-register-login-faq__hero-title {
    font-size: 2em;
  }

  .page-register-login-faq__hero-subtitle {
    font-size: 1em;
  }

  .page-register-login-faq__section-title {
    font-size: 1.8em;
  }

  .page-register-login-faq__sub-section-title {
    font-size: 1.3em;
  }

  .page-register-login-faq__cta-group {
    flex-direction: column;
  }

  .page-register-login-faq__btn {
    width: 80%;
    margin: 5px auto;
  }
}

@media (max-width: 480px) {
  .page-register-login-faq__hero-title {
    font-size: 1.6em;
  }

  .page-register-login-faq__section-title {
    font-size: 1.5em;
  }

  .page-register-login-faq__sub-section-title {
    font-size: 1.1em;
  }

  .page-register-login-faq__article {
    padding: 20px;
  }
}