.page-resources-how-to-choose-best-platform {
  color: #333333; /* Dark text on default white body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-how-to-choose-best-platform__hero-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.page-resources-how-to-choose-best-platform__hero-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.page-resources-how-to-choose-best-platform__back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #000000; /* Primary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-how-to-choose-best-platform__back-link:hover {
  color: #FCBC45; /* Login button color for hover */
}

.page-resources-how-to-choose-best-platform__main-title {
  font-size: 2.8em;
  color: #000000; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-how-to-choose-best-platform__intro-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-resources-how-to-choose-best-platform__hero-image {
  margin-bottom: 30px;
}

.page-resources-how-to-choose-best-platform__hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-best-platform__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-how-to-choose-best-platform__cta-button:hover {
  background-color: #e0a73a;
  transform: translateY(-2px);
}

.page-resources-how-to-choose-best-platform__content-area {
  max-width: 800px; /* Content width 600-800px */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-how-to-choose-best-platform__article h2,
.page-resources-how-to-choose-best-platform__article h3 {
  color: #000000; /* Primary color */
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-how-to-choose-best-platform__article h2 {
  font-size: 2em;
}

.page-resources-how-to-choose-best-platform__article h3 {
  font-size: 1.5em;
}

.page-resources-how-to-choose-best-platform__article p {
  margin-bottom: 1em;
  font-size: 1.1em; /* Font size 16-18px */
  line-height: 1.7; /* Line height 1.6-1.8 */
}

.page-resources-how-to-choose-best-platform__article a {
  color: #FCBC45; /* Login button color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-resources-how-to-choose-best-platform__article a:hover {
  text-decoration: underline;
}

.page-resources-how-to-choose-best-platform__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 1em;
}

.page-resources-how-to-choose-best-platform__list li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}

.page-resources-how-to-choose-best-platform__image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-how-to-choose-best-platform__action-buttons {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-how-to-choose-best-platform__action-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  min-width: 150px; /* Ensure buttons are not too small */
}

.page-resources-how-to-choose-best-platform__action-button--register {
  background-color: #000000; /* Primary color for register */
  color: #FFFFFF; /* White text for contrast */
}

.page-resources-how-to-choose-best-platform__action-button--register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-resources-how-to-choose-best-platform__action-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
}

.page-resources-how-to-choose-best-platform__action-button--login:hover {
  background-color: #e0a73a;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-how-to-choose-best-platform__hero-section {
    padding: 40px 15px;
  }

  .page-resources-how-to-choose-best-platform__main-title {
    font-size: 2em;
  }

  .page-resources-how-to-choose-best-platform__intro-description {
    font-size: 1em;
  }

  .page-resources-how-to-choose-best-platform__content-area {
    padding: 20px 15px;
  }

  .page-resources-how-to-choose-best-platform__article h2 {
    font-size: 1.7em;
  }

  .page-resources-how-to-choose-best-platform__article h3 {
    font-size: 1.3em;
  }

  .page-resources-how-to-choose-best-platform__article p,
  .page-resources-how-to-choose-best-platform__list li {
    font-size: 1em;
  }

  .page-resources-how-to-choose-best-platform__hero-image img,
  .page-resources-how-to-choose-best-platform__image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-how-to-choose-best-platform__action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-resources-how-to-choose-best-platform__action-button {
    width: 100%;
    max-width: 280px;
  }

  /* Ensure all content images in mobile are not smaller than 200px and prevent overflow */
  .page-resources-how-to-choose-best-platform__content-area img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-resources-how-to-choose-best-platform__main-title {
    font-size: 1.7em;
  }
}