.page-resources-account-registration-faq {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-resources-account-registration-faq__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  color: #FFFFFF;
  padding: 0;
}

.page-resources-account-registration-faq__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-resources-account-registration-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.6;
}

.page-resources-account-registration-faq__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 20px;
  z-index: 10;
}

.page-resources-account-registration-faq__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FCBC45;
}

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

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

.page-resources-account-registration-faq__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-resources-account-registration-faq__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-account-registration-faq__button--register:hover {
  background-color: #f0f0f0;
  color: #000000;
}

.page-resources-account-registration-faq__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-account-registration-faq__button--login:hover {
  background-color: #e0a030;
  color: #000000;
}

.page-resources-account-registration-faq__content-area {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-account-registration-faq__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-account-registration-faq__back-link:hover {
  text-decoration: underline;
}

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

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

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

.page-resources-account-registration-faq__paragraph {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #333333;
}

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

.page-resources-account-registration-faq__list-item {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-resources-account-registration-faq__list-item strong {
  color: #000000;
}

.page-resources-account-registration-faq__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-account-registration-faq__text-link:hover {
  text-decoration: underline;
}

.page-resources-account-registration-faq__cta-download {
  text-align: center;
  margin: 40px 0;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #eee;
}

.page-resources-account-registration-faq__cta-image {
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-account-registration-faq__button--download {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-account-registration-faq__button--download:hover {
  background-color: #333333;
  color: #FFFFFF;
}

.page-resources-account-registration-faq__final-cta {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-account-registration-faq__hero-title {
    font-size: 2.8em;
  }
  .page-resources-account-registration-faq__hero-description {
    font-size: 1.1em;
  }
  .page-resources-account-registration-faq__section-title {
    font-size: 2em;
  }
  .page-resources-account-registration-faq__sub-section-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-account-registration-faq {
    padding-top: var(--header-offset, 80px);
  }
  .page-resources-account-registration-faq__hero-title {
    font-size: 2.2em;
  }
  .page-resources-account-registration-faq__hero-description {
    font-size: 1em;
  }
  .page-resources-account-registration-faq__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-account-registration-faq__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-account-registration-faq__content-area {
    margin: 20px auto;
    padding: 0 15px;
  }
  .page-resources-account-registration-faq__section-title {
    font-size: 1.8em;
  }
  .page-resources-account-registration-faq__sub-section-title {
    font-size: 1.3em;
  }
  .page-resources-account-registration-faq__paragraph, .page-resources-account-registration-faq__list-item {
    font-size: 0.95em;
  }
  .page-resources-account-registration-faq__cta-image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-account-registration-faq img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-account-registration-faq__hero-title {
    font-size: 1.8em;
  }
  .page-resources-account-registration-faq__hero-description {
    font-size: 0.9em;
  }
  .page-resources-account-registration-faq__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-resources-account-registration-faq__section-title {
    font-size: 1.6em;
  }
  .page-resources-account-registration-faq__sub-section-title {
    font-size: 1.2em;
  }
}