/* style/index-platform-features.css */

/* Base styles */
.page-index-platform-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Assuming body background is black from shared.css */
}

.page-index-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-index-platform-features__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-platform-features__sub-title,
.page-index-platform-features__card-title,
.page-index-platform-features__item-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-platform-features__card-title a,
.page-index-platform-features__item-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-index-platform-features__card-title a:hover,
.page-index-platform-features__item-title a:hover {
  text-decoration: underline;
}

.page-index-platform-features__text-block,
.page-index-platform-features__card-description,
.page-index-platform-features__item-description,
.page-index-platform-features__ordered-list li {
  font-size: 1.1em;
  color: #f0f0f0; /* Lighter white for readability on dark background */
  margin-bottom: 15px;
}

.page-index-platform-features__text-block a,
.page-index-platform-features__card-description a,
.page-index-platform-features__item-description a,
.page-index-platform-features__ordered-list li a {
  color: #26A9E0;
  text-decoration: none;
}

.page-index-platform-features__text-block a:hover,
.page-index-platform-features__card-description a:hover,
.page-index-platform-features__item-description a:hover,
.page-index-platform-features__ordered-list li a:hover {
  text-decoration: underline;
}

/* Color Contrast Handling */
.page-index-platform-features__dark-bg {
  background-color: #000000;
  color: #ffffff;
}