.page-resources-choosing-reliable-platform {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-choosing-reliable-platform__hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

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

.page-resources-choosing-reliable-platform__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-choosing-reliable-platform__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Primary brand color */
}

.page-resources-choosing-reliable-platform__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-choosing-reliable-platform__cta-button {
  display: inline-block;
  background-color: #1E90FF; /* Secondary brand color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-choosing-reliable-platform__cta-button:hover {
  background-color: #0056b3;
}

.page-resources-choosing-reliable-platform__cta-button--secondary {
  background-color: #FFD700; /* Primary brand color for secondary CTA */
  color: #333333;
}

.page-resources-choosing-reliable-platform__cta-button--secondary:hover {
  background-color: #e0b300;
}

.page-resources-choosing-reliable-platform__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-choosing-reliable-platform__article-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-choosing-reliable-platform__meta-info {
  font-size: 0.9em;
  color: #666666;
}

.page-resources-choosing-reliable-platform__back-link {
  display: inline-block;
  margin-top: 15px;
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-choosing-reliable-platform__back-link:hover {
  text-decoration: underline;
}

.page-resources-choosing-reliable-platform__article h2 {
  font-size: 2.2em;
  color: #1E90FF; /* Secondary brand color */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-choosing-reliable-platform__article-heading {
  font-size: 1.8em;
  color: #FFD700; /* Primary brand color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-choosing-reliable-platform__article p {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.page-resources-choosing-reliable-platform__article-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-choosing-reliable-platform__list {
  list-style: disc inside;
  margin-bottom: 1.5em;
  padding-left: 20px;
}

.page-resources-choosing-reliable-platform__list-item {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.page-resources-choosing-reliable-platform__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #eee;
}

.page-resources-choosing-reliable-platform__call-to-action p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #333333;
}

@media (max-width: 768px) {
  .page-resources-choosing-reliable-platform__hero-section {
    height: 400px;
  }

  .page-resources-choosing-reliable-platform__hero-title {
    font-size: 2.2em;
  }

  .page-resources-choosing-reliable-platform__hero-description {
    font-size: 1em;
  }

  .page-resources-choosing-reliable-platform__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-choosing-reliable-platform__content-area {
    margin: 20px auto;
    padding: 0 15px;
  }

  .page-resources-choosing-reliable-platform__article h2 {
    font-size: 1.8em;
  }

  .page-resources-choosing-reliable-platform__article-heading {
    font-size: 1.5em;
  }

  .page-resources-choosing-reliable-platform__article p,
  .page-resources-choosing-reliable-platform__list-item {
    font-size: 1em;
  }

  /* Ensure content images are responsive and do not cause overflow */
  .page-resources-choosing-reliable-platform__article-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-resources-choosing-reliable-platform {
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
}

@media (max-width: 480px) {
  .page-resources-choosing-reliable-platform__hero-section {
    height: 300px;
  }

  .page-resources-choosing-reliable-platform__hero-title {
    font-size: 1.8em;
  }

  .page-resources-choosing-reliable-platform__hero-description {
    font-size: 0.9em;
  }

  .page-resources-choosing-reliable-platform__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}