/* style/resources-ph4444-platform-advantages.css */

.page-resources-ph4444-platform-advantages {
  color: #333333; /* Dark text for default light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-resources-ph4444-platform-advantages__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-ph4444-platform-advantages__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-resources-ph4444-platform-advantages__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-ph4444-platform-advantages__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent */
  line-height: 1.2;
}

.page-resources-ph4444-platform-advantages__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-resources-ph4444-platform-advantages__hero-button,
.page-resources-ph4444-platform-advantages__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-ph4444-platform-advantages__hero-button:hover,
.page-resources-ph4444-platform-advantages__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-ph4444-platform-advantages__content-area {
  max-width: 800px; /* Optimal reading width */
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  font-size: 1.1em;
}

.page-resources-ph4444-platform-advantages__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-ph4444-platform-advantages__back-link:hover {
  color: #FFD700;
}

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

.page-resources-ph4444-platform-advantages__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Deep red for main titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-ph4444-platform-advantages__sub-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subtitles */
  margin-top: 35px;
  margin-bottom: 20px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-resources-ph4444-platform-advantages__paragraph {
  margin-bottom: 1.2em;
  color: #333333;
}

.page-resources-ph4444-platform-advantages__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-ph4444-platform-advantages__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1.5em;
  color: #333333;
}

.page-resources-ph4444-platform-advantages__list li {
  margin-bottom: 0.8em;
}

.page-resources-ph4444-platform-advantages__cta-button {
  margin-top: 25px;
  margin-bottom: 25px;
  width: fit-content;
}

.page-resources-ph4444-platform-advantages__cta-button--final {
  margin-top: 40px;
  font-size: 1.2em;
  padding: 18px 35px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-ph4444-platform-advantages {
    padding-top: var(--header-offset, 80px);
  }

  .page-resources-ph4444-platform-advantages__hero-title {
    font-size: 2.2em;
  }

  .page-resources-ph4444-platform-advantages__hero-description {
    font-size: 1em;
  }

  .page-resources-ph4444-platform-advantages__hero-button,
  .page-resources-ph4444-platform-advantages__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-ph4444-platform-advantages__section-title {
    font-size: 1.8em;
  }

  .page-resources-ph4444-platform-advantages__sub-title {
    font-size: 1.4em;
  }

  .page-resources-ph4444-platform-advantages__content-area {
    padding: 15px;
  }

  .page-resources-ph4444-platform-advantages__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}