/* style/resources-hp88-platform-deep-dive.css */

/* Base styles for the page content, considering dark body background */
.page-resources-hp88-platform-deep-dive {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
  padding-bottom: 60px; /* Space above footer */
}

.page-resources-hp88-platform-deep-dive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-hp88-platform-deep-dive__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #017439; /* Brand color for hero background */
  color: #ffffff;
  overflow: hidden;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
}

.page-resources-hp88-platform-deep-dive__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3; /* Subtle background image */
}

.page-resources-hp88-platform-deep-dive__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-hp88-platform-deep-dive__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}

.page-resources-hp88-platform-deep-dive__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-hp88-platform-deep-dive__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Section Styling */
.page-resources-hp88-platform-deep-dive__section {
  padding: 60px 0;
}

.page-resources-hp88-platform-deep-dive__section-title {
  font-size: 2.5em;
  color: #017439; /* Brand color for titles on light backgrounds */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-hp88-platform-deep-dive__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-resources-hp88-platform-deep-dive__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast with body */
  color: #ffffff;
}

.page-resources-hp88-platform-deep-dive__dark-bg .page-resources-hp88-platform-deep-dive__section-title {
  color: #ffffff;
}

.page-resources-hp88-platform-deep-dive__dark-bg .page-resources-hp88-platform-deep-dive__section-title::after {
  background-color: #ffffff;
}

.page-resources-hp88-platform-deep-dive__text-block {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Buttons */
.page-resources-hp88-platform-deep-dive__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-resources-hp88-platform-deep-dive__cta-buttons--center {
  margin-top: 40px;
}