.page-resources-understanding-ph44 {
  color: #333333; /* Dark text for light body background */
}

.page-resources-understanding-ph44__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text contrast */
}

.page-resources-understanding-ph44__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.7; /* Slightly dim the image to make text stand out */
}

.page-resources-understanding-ph44__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF; /* White text for dark hero background */
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-understanding-ph44__main-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.page-resources-understanding-ph44__intro-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-understanding-ph44__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text on gold button */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-understanding-ph44__cta-button:hover {
  background-color: #8B0000; /* Dark red on hover */
  color: #FFD700; /* Gold text on hover */
}

.page-resources-understanding-ph44__cta-button--inline {
  margin: 15px 10px 15px 0;
}

.page-resources-understanding-ph44__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-resources-understanding-ph44__article {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-understanding-ph44__article-heading {
  font-size: 2em;
  color: #8B0000; /* Dark red for main article headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-understanding-ph44__sub-heading {
  font-size: 1.6em;
  color: #333333; /* Dark gray for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-understanding-ph44__paragraph {
  margin-bottom: 20px;
}

.page-resources-understanding-ph44__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-understanding-ph44__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-resources-understanding-ph44__list-item {
  margin-bottom: 10px;
}

.page-resources-understanding-ph44__related-resources {
  margin-top: 60px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #eee;
}

.page-resources-understanding-ph44__related-heading {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-understanding-ph44__resource-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-resources-understanding-ph44__resource-item {
  margin-bottom: 10px;
}

.page-resources-understanding-ph44__resource-item a {
  color: #007bff; /* Standard link color */
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-understanding-ph44__resource-item a:hover {
  color: #FFD700; /* Gold on hover for resource links */
  text-decoration: underline;
}

.page-resources-understanding-ph44__back-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-understanding-ph44__back-link:hover {
  text-decoration: underline;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-understanding-ph44__hero-content {
    padding: 15px;
  }

  .page-resources-understanding-ph44__main-title {
    font-size: 2em;
  }

  .page-resources-understanding-ph44__intro-description {
    font-size: 1em;
  }

  .page-resources-understanding-ph44__cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-resources-understanding-ph44__article-heading {
    font-size: 1.6em;
  }

  .page-resources-understanding-ph44__sub-heading {
    font-size: 1.3em;
  }

  .page-resources-understanding-ph44__content-area {
    padding: 20px 15px;
    font-size: 1em;
  }

  /* Mobile image overflow prevention */
  .page-resources-understanding-ph44__article-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-understanding-ph44__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-understanding-ph44__cta-button--inline {
    display: block;
    margin: 10px auto;
  }
}

@media (max-width: 480px) {
  .page-resources-understanding-ph44__main-title {
    font-size: 1.5em;
  }

  .page-resources-understanding-ph44__intro-description {
    font-size: 0.9em;
  }

  .page-resources-understanding-ph44__cta-button {
    font-size: 0.9em;
    padding: 8px 15px;
  }

  .page-resources-understanding-ph44__article {
    padding: 20px;
  }
}