.page-blog-understanding-99jilis-security-measures {
  color: #404040;
  font-family: Arial, sans-serif;
}

.page-blog-understanding-99jilis-security-measures__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  background-color: #F3F3F3;
}

.page-blog-understanding-99jilis-security-measures__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px; /* Limit height for aesthetic */
}

.page-blog-understanding-99jilis-security-measures__hero-content {
  padding: 40px 20px;
  text-align: center;
  background-color: #F3F3F3;
}

.page-blog-understanding-99jilis-security-measures__hero-title {
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #025BE8; /* Brand accent color */
}

.page-blog-understanding-99jilis-security-measures__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-understanding-99jilis-security-measures__hero-button {
  display: inline-block;
  background-color: #1266EC; /* Register button color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-understanding-99jilis-security-measures__hero-button:hover {
  background-color: #025BE8;
}

.page-blog-understanding-99jilis-security-measures__content-section {
  padding: 40px 0;
  background-color: #ffffff;
}

.page-blog-understanding-99jilis-security-measures__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-understanding-99jilis-security-measures__section-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  color: #025BE8;
}

.page-blog-understanding-99jilis-security-measures__subsection-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #025BE8;
}

.page-blog-understanding-99jilis-security-measures__text-block {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-blog-understanding-99jilis-security-measures__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-understanding-99jilis-security-measures__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-blog-understanding-99jilis-security-measures__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-understanding-99jilis-security-measures__cta-button--register {
  background-color: #1266EC;
  color: #ffffff;
}

.page-blog-understanding-99jilis-security-measures__cta-button--register:hover {
  background-color: #025BE8;
}

.page-blog-understanding-99jilis-security-measures__cta-button--login {
  background-color: #E5EEFD;
  color: #1266EC;
  border: 2px solid #1266EC;
}

.page-blog-understanding-99jilis-security-measures__cta-button--login:hover {
  background-color: #CCE3FF;
}

.page-blog-understanding-99jilis-security-measures__faq-section {
  margin-top: 50px;
  background-color: #F3F3F3;
  padding: 30px;
  border-radius: 10px;
}

.page-blog-understanding-99jilis-security-measures__faq-item {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-blog-understanding-99jilis-security-measures__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  cursor: pointer;
  color: #404040;
  font-size: 1.1em;
  list-style: none; /* For details tag */
}

.page-blog-understanding-99jilis-security-measures__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details tag */
}

.page-blog-understanding-99jilis-security-measures__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #025BE8;
}

.page-blog-understanding-99jilis-security-measures__faq-answer {
  padding: 0 25px 18px;
  font-size: 0.95em;
  line-height: 1.6;
  color: #404040;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-understanding-99jilis-security-measures__faq-item[open] .page-blog-understanding-99jilis-security-measures__faq-answer {
  max-height: 500px; /* Sufficient height for most answers */
  padding-top: 10px;
}

/* Ensure contrast for text on default body background */
.page-blog-understanding-99jilis-security-measures {
  color: #333333; /* Deep gray for readability on light background */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-understanding-99jilis-security-measures__hero-title {
    font-size: 2em;
  }

  .page-blog-understanding-99jilis-security-measures__section-title {
    font-size: 1.8em;
  }

  .page-blog-understanding-99jilis-security-measures__subsection-title {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-blog-understanding-99jilis-security-measures__hero-image {
    max-height: 300px;
  }

  .page-blog-understanding-99jilis-security-measures__hero-content,
  .page-blog-understanding-99jilis-security-measures__content-section {
    padding: 20px 0;
  }

  .page-blog-understanding-99jilis-security-measures__hero-title {
    font-size: 1.8em;
    max-width: 100%;
  }

  .page-blog-understanding-99jilis-security-measures__hero-description {
    font-size: 1em;
    max-width: 100%;
  }

  .page-blog-understanding-99jilis-security-measures__hero-button {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-understanding-99jilis-security-measures__container {
    padding: 0 15px;
  }

  .page-blog-understanding-99jilis-security-measures__section-title {
    font-size: 1.5em;
  }

  .page-blog-understanding-99jilis-security-measures__subsection-title {
    font-size: 1.2em;
  }

  .page-blog-understanding-99jilis-security-measures__text-block {
    font-size: 0.95em;
  }

  .page-blog-understanding-99jilis-security-measures__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-blog-understanding-99jilis-security-measures__cta-group {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .page-blog-understanding-99jilis-security-measures__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-understanding-99jilis-security-measures__faq-section {
    padding: 20px 15px;
  }

  .page-blog-understanding-99jilis-security-measures__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-understanding-99jilis-security-measures__faq-answer {
    font-size: 0.9em;
    padding: 0 20px 15px;
  }

  /* General image and container responsiveness */
  .page-blog-understanding-99jilis-security-measures img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-blog-understanding-99jilis-security-measures__content-section,
  .page-blog-understanding-99jilis-security-measures__container,
  .page-blog-understanding-99jilis-security-measures__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}