.page-resources-account-security-faq {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-account-security-faq__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
}

.page-resources-account-security-faq__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-account-security-faq__hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-account-security-faq__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-account-security-faq__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-account-security-faq__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-account-security-faq__register-button,
.page-resources-account-security-faq__login-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-account-security-faq__register-button {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-account-security-faq__register-button:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-resources-account-security-faq__login-button {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-account-security-faq__login-button:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-resources-account-security-faq__content-area {
  max-width: 800px; /* Constrain article width for readability */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-account-security-faq__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-account-security-faq__back-link:hover {
  color: #FCBC45;
}

.page-resources-account-security-faq__article {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-account-security-faq__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-account-security-faq__sub-title {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-account-security-faq__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-account-security-faq__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

.page-resources-account-security-faq__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-account-security-faq__list-item {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.page-resources-account-security-faq__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-account-security-faq__text-link:hover {
  color: #000000;
}

.page-resources-account-security-faq__faq-list {
  margin-top: 30px;
}

.page-resources-account-security-faq__faq-item {
  background-color: #F9F9F9;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-resources-account-security-faq__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-account-security-faq__faq-answer {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 0;
}

.page-resources-account-security-faq__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 30px;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-resources-account-security-faq__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-resources-account-security-faq__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-account-security-faq__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-account-security-faq__cta-button:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-account-security-faq__hero-title {
    font-size: 2.2em;
  }

  .page-resources-account-security-faq__hero-description {
    font-size: 1em;
  }

  .page-resources-account-security-faq__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-account-security-faq__register-button,
  .page-resources-account-security-faq__login-button {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-account-security-faq__content-area {
    padding: 0 15px;
  }

  .page-resources-account-security-faq__section-title {
    font-size: 1.8em;
  }

  .page-resources-account-security-faq__sub-title {
    font-size: 1.4em;
  }

  .page-resources-account-security-faq__paragraph,
  .page-resources-account-security-faq__list-item,
  .page-resources-account-security-faq__faq-question,
  .page-resources-account-security-faq__faq-answer {
    font-size: 1em;
  }

  .page-resources-account-security-faq__article-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-account-security-faq__cta-title {
    font-size: 1.8em;
  }

  .page-resources-account-security-faq__cta-description {
    font-size: 1em;
  }

  .page-resources-account-security-faq__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .page-resources-account-security-faq__hero-title {
    font-size: 1.8em;
  }

  .page-resources-account-security-faq__hero-description {
    font-size: 0.9em;
  }

  .page-resources-account-security-faq__hero-section {
    padding: 40px 15px;
  }

  .page-resources-account-security-faq__register-button,
  .page-resources-account-security-faq__login-button {
    width: 90%;
  }

  .page-resources-account-security-faq__article {
    padding: 20px;
  }

  .page-resources-account-security-faq__section-title {
    font-size: 1.6em;
  }

  .page-resources-account-security-faq__sub-title {
    font-size: 1.2em;
  }

  .page-resources-account-security-faq__cta-section {
    padding: 40px 15px;
  }

  .page-resources-account-security-faq__cta-title {
    font-size: 1.6em;
  }
}