.page-resources-how-to-choose-safe-platforms {
  color: #ffffff; /* Dark body background #050505, so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #050505; /* Inherited from body, but explicitly set for clarity */
}

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

.page-resources-how-to-choose-safe-platforms__introduction-section {
  padding: 80px 0 40px;
  background: #0d0d0d;
  text-align: center;
  padding-top: 120px; /* Desktop padding for fixed header */
}

.page-resources-how-to-choose-safe-platforms__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-how-to-choose-safe-platforms__intro-text {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-resources-how-to-choose-safe-platforms__highlight-text {
  color: var(--secondary-color);
  font-weight: bold;
}

.page-resources-how-to-choose-safe-platforms__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-resources-how-to-choose-safe-platforms__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-resources-how-to-choose-safe-platforms__cta-button--primary {
  background: var(--primary-color);
  color: #ffffff;
}

.page-resources-how-to-choose-safe-platforms__cta-button--primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-safe-platforms__cta-button--secondary {
  background: var(--secondary-color);
  color: #333333;
}

.page-resources-how-to-choose-safe-platforms__cta-button--secondary:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-safe-platforms__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-how-to-choose-safe-platforms__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
}

.page-resources-how-to-choose-safe-platforms__criteria-section {
  padding: 60px 0;
  background: #1a1a1a;
}

.page-resources-how-to-choose-safe-platforms__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-how-to-choose-safe-platforms__card {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-choose-safe-platforms__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-safe-platforms__card-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.page-resources-how-to-choose-safe-platforms__card-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-how-to-choose-safe-platforms__card-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-resources-how-to-choose-safe-platforms__card-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-resources-how-to-choose-safe-platforms__expert-tips-section {
  padding: 60px 0;
  background: #0d0d0d;
}

.page-resources-how-to-choose-safe-platforms__tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-how-to-choose-safe-platforms__tip-item {
  background: #2a2a2a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-choose-safe-platforms__tip-icon {
  width: 80px;
  height: auto;
  flex-shrink: 0;
  max-width: 100%;
}

.page-resources-how-to-choose-safe-platforms__tip-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin: 0;
}

.page-resources-how-to-choose-safe-platforms__tip-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-resources-how-to-choose-safe-platforms__conclusion-text {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-choose-safe-platforms__conclusion-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-resources-how-to-choose-safe-platforms__related-articles-section {
  padding: 60px 0;
  background: #1a1a1a;
}

.page-resources-how-to-choose-safe-platforms__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-how-to-choose-safe-platforms__article-card {
  background: #2a2a2a;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-choose-safe-platforms__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-resources-how-to-choose-safe-platforms__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.page-resources-how-to-choose-safe-platforms__article-title {
  font-size: 1.3em;
  color: var(--secondary-color);
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-resources-how-to-choose-safe-platforms__article-title a {
  color: inherit;
  text-decoration: none;
}

.page-resources-how-to-choose-safe-platforms__article-title a:hover {
  text-decoration: underline;
}

.page-resources-how-to-choose-safe-platforms__article-excerpt {
  font-size: 0.95em;
  color: #e0e0e0;
  margin: 0 20px 20px;
}

.page-resources-how-to-choose-safe-platforms__read-more-button {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-resources-how-to-choose-safe-platforms__read-more-button:hover {
  background: #0056b3;
}

.page-resources-how-to-choose-safe-platforms__faq-section {
  padding: 60px 0;
  background: #0d0d0d;
}

.page-resources-how-to-choose-safe-platforms__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-how-to-choose-safe-platforms__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-choose-safe-platforms__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2a2a2a;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  color: #ffffff;
}

.page-resources-how-to-choose-safe-platforms__faq-question:hover {
  background: #3a3a3a;
}

.page-resources-how-to-choose-safe-platforms__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: var(--secondary-color);
}

.page-resources-how-to-choose-safe-platforms__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-how-to-choose-safe-platforms__faq-item.active .page-resources-how-to-choose-safe-platforms__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg);
}

.page-resources-how-to-choose-safe-platforms__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  background: #1f1f1f;
  color: #e0e0e0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-how-to-choose-safe-platforms__faq-item.active .page-resources-how-to-choose-safe-platforms__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 8px 8px;
}

.page-resources-how-to-choose-safe-platforms__faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
}

.page-resources-how-to-choose-safe-platforms__faq-answer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-resources-how-to-choose-safe-platforms__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-how-to-choose-safe-platforms__introduction-section {
    padding-top: 100px !important; /* Mobile padding for fixed header */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-resources-how-to-choose-safe-platforms__main-title {
    font-size: 2.2em;
  }

  .page-resources-how-to-choose-safe-platforms__intro-text {
    font-size: 1em;
  }

  .page-resources-how-to-choose-safe-platforms__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-choose-safe-platforms__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1em;
    padding: 12px 25px;
  }

  .page-resources-how-to-choose-safe-platforms__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-resources-how-to-choose-safe-platforms__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-resources-how-to-choose-safe-platforms__criteria-section,
  .page-resources-how-to-choose-safe-platforms__expert-tips-section,
  .page-resources-how-to-choose-safe-platforms__related-articles-section,
  .page-resources-how-to-choose-safe-platforms__faq-section {
    padding: 40px 0;
  }

  .page-resources-how-to-choose-safe-platforms__container {
    padding: 0 15px;
  }

  .page-resources-how-to-choose-safe-platforms__card {
    padding: 20px;
  }

  .page-resources-how-to-choose-safe-platforms__card-title {
    font-size: 1.2em;
  }

  .page-resources-how-to-choose-safe-platforms__card-text {
    font-size: 0.9em;
  }

  .page-resources-how-to-choose-safe-platforms__tip-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .page-resources-how-to-choose-safe-platforms__tip-icon {
    width: 60px;
    margin-bottom: 15px;
  }

  .page-resources-how-to-choose-safe-platforms__tip-text {
    font-size: 0.95em;
  }

  .page-resources-how-to-choose-safe-platforms__conclusion-text {
    font-size: 1em;
  }

  .page-resources-how-to-choose-safe-platforms__article-image {
    height: 160px;
  }

  .page-resources-how-to-choose-safe-platforms__article-title {
    font-size: 1.1em;
    margin: 15px 15px 8px;
  }

  .page-resources-how-to-choose-safe-platforms__article-excerpt {
    font-size: 0.85em;
    margin: 0 15px 15px;
  }

  .page-resources-how-to-choose-safe-platforms__read-more-button {
    font-size: 0.9em;
    padding: 8px 15px;
    margin: 0 15px 15px;
  }

  .page-resources-how-to-choose-safe-platforms__faq-question {
    padding: 15px 20px;
  }

  .page-resources-how-to-choose-safe-platforms__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-how-to-choose-safe-platforms__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }

  .page-resources-how-to-choose-safe-platforms__faq-answer {
    padding: 0 20px;
  }

  .page-resources-how-to-choose-safe-platforms__faq-item.active .page-resources-how-to-choose-safe-platforms__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources-how-to-choose-safe-platforms img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-how-to-choose-safe-platforms__section,
  .page-resources-how-to-choose-safe-platforms__card,
  .page-resources-how-to-choose-safe-platforms__container,
  .page-resources-how-to-choose-safe-platforms__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}