/* style/resources-how-to-choose-safe-platform.css */

/* Base styles for the page content */
.page-resources-how-to-choose-safe-platform {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark body background #0a0a0a, so light text */
  background-color: transparent; /* Inherit from body or shared, ensuring text contrast */
}

/* Fixed header offset */
.page-resources-how-to-choose-safe-platform__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-how-to-choose-safe-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-how-to-choose-safe-platform__hero-section {
  position: relative;
  background-color: rgba(38, 169, 224, 0.8); /* Brand color with transparency for hero */
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  color: #ffffff;
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-resources-how-to-choose-safe-platform__hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Subtle background image */
}

.page-resources-how-to-choose-safe-platform__hero-content {
  max-width: 800px;
  z-index: 1;
}