/* style/resources-platform-selection.css */
.page-resources-platform-selection {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0F1A2C; /* Darker background for contrast */
}

.page-resources-platform-selection__hero {
  background: linear-gradient(135deg, #1A2B4C, #0F1A2C);
  padding: 80px 20px;
  text-align: center;
  color: #FFD700;
}

.page-resources-platform-selection__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

.page-resources-platform-selection__hero-title .highlight {
  color: #FFD700;
}

.page-resources-platform-selection__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #C0C0C0; /* Lighter gray for subtitle */
}

.page-resources-platform-selection__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-platform-selection__article-content {
  padding: 60px 0;
  background-color: #0F1A2C;
}

.page-resources-platform-selection__article-container {
  max-width: 800px;
}

.page-resources-platform-selection__article-body h2 {
  font-size: 2em;
  color: #FFD700; /* Gold for H2 */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #3A4B6C;
  padding-bottom: 10px;
}

.page-resources-platform-selection__article-body h3 {
  font-size: 1.5em;
  color: #B0C4DE; /* Light steel blue for H3 */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-platform-selection__article-body h4 {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-resources-platform-selection__article-body p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 1em;
  color: #E0E0E0;
}

.page-resources-platform-selection__article-body ul,
.page-resources-platform-selection__article-body ol {
  list-style-position: inside;
  margin-bottom: 1em;
  padding-left: 20px;
}

.page-resources-platform-selection__article-body li {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 0.5em;
  color: #E0E0E0;
}

.page-resources-platform-selection__article-body a {
  color: #FFD700;
  text-decoration: none;
}

.page-resources-platform-selection__article-body a:hover {
  text-decoration: underline;
}

.page-resources-platform-selection__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-platform-selection__image--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-platform-selection__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-resources-platform-selection__btn--primary {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-resources-platform-selection__btn--primary:hover {
  background-color: #e5c400;
  color: #0F1A2C;
}

.page-resources-platform-selection__btn--secondary {
  background-color: #3A4B6C;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-resources-platform-selection__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-resources-platform-selection__quote {
  font-style: italic;
  border-left: 4px solid #FFD700;
  padding-left: 15px;
  margin: 25px 0;
  color: #C0C0C0;
}

.page-resources-platform-selection__faq-item {
  background-color: #1A2B4C;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-platform-selection__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-resources-platform-selection__faq-answer {
  color: #E0E0E0;
  font-size: 1em;
}

.page-resources-platform-selection__cta-block {
  background-color: #1A2B4C;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-platform-selection__cta-text {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-resources-platform-selection__back-link {
  text-align: center;
  margin-top: 40px;
}

.page-resources-platform-selection__back-link a {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.1em;
}

.page-resources-platform-selection__back-link a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-platform-selection__hero-title {
    font-size: 2.2em;
  }

  .page-resources-platform-selection__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-platform-selection__article-body h2 {
    font-size: 1.8em;
  }

  .page-resources-platform-selection__article-body h3 {
    font-size: 1.3em;
  }

  .page-resources-platform-selection__article-body p,
  .page-resources-platform-selection__article-body li {
    font-size: 1em;
  }

  .page-resources-platform-selection__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-resources-platform-selection__cta-text {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-resources-platform-selection__hero {
    padding: 60px 15px;
  }

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

  .page-resources-platform-selection__article-content {
    padding: 40px 0;
  }

  .page-resources-platform-selection__container {
    padding: 0 15px;
  }

  .page-resources-platform-selection__btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
}