.page-resources-jili100-overview {
  color: #ffffff; /* Light text for dark body background */
  background-color: #2c3e50; /* Inherited from body, ensuring contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-resources-jili100-overview__hero-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

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

.page-resources-jili100-overview__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(26, 32, 44, 0.7); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

.page-resources-jili100-overview__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-jili100-overview__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-jili100-overview__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-jili100-overview__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-resources-jili100-overview__button--primary {
  background-color: #FFD700; /* Gold primary color */
  color: #1A202C; /* Dark text for gold button */
}

.page-resources-jili100-overview__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-jili100-overview__button--secondary {
  background-color: #1A202C; /* Dark blue auxiliary color */
  color: #FFD700; /* Gold text for dark button */
  border: 2px solid #FFD700;
}

.page-resources-jili100-overview__button--secondary:hover {
  background-color: #3a445c;
  transform: translateY(-2px);
}

.page-resources-jili100-overview__button--tertiary {
  background-color: #FFD700; /* Gold primary color */
  color: #1A202C; /* Dark text for gold button */
  border: none;
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-jili100-overview__button--tertiary:hover {
  background-color: #e6c200;
  transform: translateY(-1px);
}

.page-resources-jili100-overview__content-area {
  max-width: 800px; /* Constrain content width for readability */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1A202C; /* Dark blue background for content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-resources-jili100-overview__section {
  margin-bottom: 60px;
}

.page-resources-jili100-overview__article {
  padding: 20px 0;
}

.page-resources-jili100-overview__article-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold primary color */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-jili100-overview__sub-heading {
  font-size: 1.8em;
  color: #FFD700; /* Gold primary color */
  margin-top: 35px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 5px;
}

.page-resources-jili100-overview__article-paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-jili100-overview__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #f0f0f0;
}

.page-resources-jili100-overview__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-jili100-overview__list-item strong {
  color: #FFD700;
}

.page-resources-jili100-overview__image-center {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-jili100-overview__image-bottom {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-jili100-overview__call-to-action {
  background-color: #1A202C; /* Dark blue auxiliary color */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid #FFD700;
}

.page-resources-jili100-overview__call-to-action-title {
  font-size: 2em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 15px;
}

.page-resources-jili100-overview__call-to-action-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-jili100-overview__return-link {
  text-align: center;
  margin-top: 50px;
}

.page-resources-jili100-overview__article-paragraph a {
  color: #FFD700; /* Gold for links within paragraphs */
  text-decoration: underline;
}

.page-resources-jili100-overview__article-paragraph a:hover {
  color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-jili100-overview__hero-title {
    font-size: 3em;
  }
  .page-resources-jili100-overview__hero-description {
    font-size: 1.1em;
  }
  .page-resources-jili100-overview__article-title {
    font-size: 2.2em;
  }
  .page-resources-jili100-overview__sub-heading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-jili100-overview {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-resources-jili100-overview__hero-section {
    padding: 40px 15px;
    min-height: 450px;
  }
  .page-resources-jili100-overview__hero-title {
    font-size: 2.2em;
  }
  .page-resources-jili100-overview__hero-description {
    font-size: 1em;
  }
  .page-resources-jili100-overview__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-jili100-overview__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-jili100-overview__content-area {
    padding: 20px 15px;
  }
  .page-resources-jili100-overview__article-title {
    font-size: 1.8em;
  }
  .page-resources-jili100-overview__sub-heading {
    font-size: 1.4em;
  }
  .page-resources-jili100-overview__article-paragraph {
    font-size: 1em;
  }
  .page-resources-jili100-overview__list-item {
    font-size: 1em;
  }
  .page-resources-jili100-overview__call-to-action {
    padding: 30px 20px;
  }
  .page-resources-jili100-overview__call-to-action-title {
    font-size: 1.6em;
  }
  .page-resources-jili100-overview__call-to-action-description {
    font-size: 1em;
  }
  .page-resources-jili100-overview__image-center, .page-resources-jili100-overview__image-bottom {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min width is respected */
    min-height: 200px; /* Ensure min height is respected */
  }
  .page-resources-jili100-overview__content-area img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-jili100-overview__hero-title {
    font-size: 1.8em;
  }
  .page-resources-jili100-overview__hero-description {
    font-size: 0.9em;
  }
  .page-resources-jili100-overview__button {
    width: 95%;
    padding: 12px 20px;
  }
  .page-resources-jili100-overview__article-title {
    font-size: 1.5em;
  }
  .page-resources-jili100-overview__sub-heading {
    font-size: 1.2em;
  }
  .page-resources-jili100-overview__call-to-action-title {
    font-size: 1.4em;
  }
}