/* style/resources-88new-login-faq.css */
.page-resources-88new-login-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #ffffff; /* Explicitly set for clarity, though shared.css defines body bg */
}

.page-resources-88new-login-faq a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-88new-login-faq a:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-resources-88new-login-faq__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background: linear-gradient(135deg, #26A9E0, #FFFFFF);
  color: #333333;
}

.page-resources-88new-login-faq__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-88new-login-faq__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-88new-login-faq__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-88new-login-faq__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-88new-login-faq__main-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000000; /* Ensure high contrast */
}

.page-resources-88new-login-faq__introduction-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-resources-88new-login-faq__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-88new-login-faq__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-88new-login-faq__cta-button--primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-88new-login-faq__cta-button--primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-88new-login-faq__cta-button--secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-88new-login-faq__cta-button--secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* General Section Styling */
.page-resources-88new-login-faq__section {
  padding: 60px 20px;
}

.page-resources-88new-login-faq__section--white-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-88new-login-faq__section--dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-88new-login-faq__section--light-grey-bg {
  background-color: #f9f9f9;
  color: #333333;
}

.page-resources-88new-login-faq__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-resources-88new-login-faq__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Default for light background */
}

.page-resources-88new-login-faq__section-title--light {
  color: #ffffff; /* For dark background sections */
}

.page-resources-88new-login-faq__text-block {
  font-size: 16px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-resources-88new-login-faq__text-block--light {
  color: #ffffff;
}

/* Card Grid for Login Issues */
.page-resources-88new-login-faq__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-88new-login-faq__card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-88new-login-faq__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-resources-88new-login-faq__card-image {
  width: 100%; /* Occupy card width */
  max-width: 400px; /* Max size for image within card */
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-resources-88new-login-faq__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-88new-login-faq__card-description {
  font-size: 15px;
  color: #555555;
  text-align: left;
}

/* Feature Grid for Login Guides */
.page-resources-88new-login-faq__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-resources-88new-login-faq__feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-88new-login-faq__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-resources-88new-login-faq__feature-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-88new-login-faq__feature-description {
  font-size: 15px;
  color: #f0f0f0;
}

.page-resources-88new-login-faq__feature-description a {
  color: #f0f0f0;
  text-decoration: underline;
}

.page-resources-88new-login-faq__feature-description a:hover {
  color: #ffffff;
}

/* Security Features */
.page-resources-88new-login-faq__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-88new-login-faq__security-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-88new-login-faq__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-resources-88new-login-faq__security-icon {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-resources-88new-login-faq__security-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-resources-88new-login-faq__security-description {
  font-size: 15px;
  color: #555555;
  text-align: left;
}

/* FAQ Section */
.page-resources-88new-login-faq__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-88new-login-faq__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-resources-88new-login-faq__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-resources-88new-login-faq__faq-item.active .page-resources-88new-login-faq__faq-answer {
  max-height: 2000px !important; /* 🚨 Use !important and sufficiently large value */
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-88new-login-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-88new-login-faq__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-88new-login-faq__faq-question:active {
  background: #eeeeee;
}

.page-resources-88new-login-faq__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click event */
  color: #333333;
}