.page-resources-30jili-security-guarantee {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

.page-resources-30jili-security-guarantee__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden; /* Prevent image overflow */
}

.page-resources-30jili-security-guarantee__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-resources-30jili-security-guarantee__hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-resources-30jili-security-guarantee__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-30jili-security-guarantee__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-30jili-security-guarantee__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-resources-30jili-security-guarantee__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-30jili-security-guarantee__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;
  font-size: 1em;
  cursor: pointer;
}

.page-resources-30jili-security-guarantee__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-30jili-security-guarantee__button--register:hover {
  background-color: #F0F0F0;
  color: #333333;
}

.page-resources-30jili-security-guarantee__button--login,
.page-resources-30jili-security-guarantee__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-30jili-security-guarantee__button--login:hover,
.page-resources-30jili-security-guarantee__button--join-now:hover {
  background-color: #E0A53A;
  border-color: #E0A53A;
}

.page-resources-30jili-security-guarantee__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-30jili-security-guarantee__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-30jili-security-guarantee__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-30jili-security-guarantee__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-30jili-security-guarantee__image-center {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image width */
  min-height: 200px; /* Enforce min image height */
}

.page-resources-30jili-security-guarantee__quote {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555555;
  border-radius: 5px;
}

.page-resources-30jili-security-guarantee__faq-item {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #F0F0F0;
  border-radius: 8px;
}

.page-resources-30jili-security-guarantee__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-30jili-security-guarantee__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-resources-30jili-security-guarantee__call-to-action {
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px 20px;
  text-align: center;
  margin-top: 50px;
  border-radius: 10px;
}

.page-resources-30jili-security-guarantee__call-to-action-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-resources-30jili-security-guarantee__call-to-action-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-30jili-security-guarantee__return-link-container {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-30jili-security-guarantee__return-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-30jili-security-guarantee__return-link:hover {
  color: #E0A53A;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-30jili-security-guarantee__hero-title {
    font-size: 2em;
  }

  .page-resources-30jili-security-guarantee__hero-description {
    font-size: 1em;
  }

  .page-resources-30jili-security-guarantee__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-30jili-security-guarantee__button {
    width: 80%;
    max-width: 300px;
  }

  .page-resources-30jili-security-guarantee__section-title {
    font-size: 1.8em;
  }

  .page-resources-30jili-security-guarantee__sub-title {
    font-size: 1.5em;
  }

  .page-resources-30jili-security-guarantee__text-block {
    font-size: 1em;
  }

  .page-resources-30jili-security-guarantee__call-to-action-title {
    font-size: 1.8em;
  }

  .page-resources-30jili-security-guarantee__call-to-action-description {
    font-size: 1em;
  }

  /* Mobile image scaling to prevent overflow */
  .page-resources-30jili-security-guarantee__content-area img {
    max-width: 100%;
    height: auto;
    width: auto; /* Allow width to adjust based on max-width */
  }

  .page-resources-30jili-security-guarantee__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-resources-30jili-security-guarantee__hero-container {
    min-height: 400px;
  }

  .page-resources-30jili-security-guarantee__content-area {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-30jili-security-guarantee {
    overflow-x: hidden;
  }
}