.page-index-platform-highlights {
  font-family: 'Arial', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

.page-index-platform-highlights .highlight-text {
  color: #007bff;
}

.page-index-platform-highlights__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  text-align: center;
  gap: 40px;
}

.page-index-platform-highlights__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-platform-highlights__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
}

.page-index-platform-highlights__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-index-platform-highlights__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-platform-highlights__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-index-platform-highlights__btn--primary {
  background-color: #28a745;
  color: #ffffff;
}

.page-index-platform-highlights__btn--primary:hover {
  background-color: #1e7e34;
  transform: translateY(-2px);
}

.page-index-platform-highlights__btn--secondary {
  background-color: #0056b3;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-platform-highlights__btn--secondary:hover {
  background-color: #003f7f;
  transform: translateY(-2px);
}

.page-index-platform-highlights__btn--link {
  background: none;
  color: #007bff;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-index-platform-highlights__btn--link:hover {
  color: #0056b3;
}

.page-index-platform-highlights__hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-index-platform-highlights__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-index-platform-highlights__advantages {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.page-index-platform-highlights__section-title {
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #007bff;
  font-weight: bold;
}

.page-index-platform-highlights__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-index-platform-highlights__advantage-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-platform-highlights__advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-platform-highlights__advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #e0f7fa; /* Light blue background for icons */
  padding: 10px;
  object-fit: contain;
}

.page-index-platform-highlights__advantage-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-platform-highlights__advantage-description {
  font-size: 1em;
  color: #333333;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-platform-highlights__cta {
  padding: 80px 20px;
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
}

.page-index-platform-highlights__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.page-index-platform-highlights__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-index-platform-highlights__faq {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.page-index-platform-highlights__faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-index-platform-highlights__faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 20px;
}

.page-index-platform-highlights__faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-index-platform-highlights__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-index-platform-highlights__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-left: 20px;
}

.page-index-platform-highlights__faq-question.active + .page-index-platform-highlights__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-platform-highlights__hero-title {
    font-size: 2.8em;
  }

  .page-index-platform-highlights__section-title {
    font-size: 2.2em;
  }

  .page-index-platform-highlights__advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-platform-highlights__hero {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-index-platform-highlights__hero-title {
    font-size: 2.2em;
  }

  .page-index-platform-highlights__hero-description {
    font-size: 1.1em;
  }

  .page-index-platform-highlights__hero-actions,
  .page-index-platform-highlights__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-platform-highlights__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-index-platform-highlights__advantages,
  .page-index-platform-highlights__cta,
  .page-index-platform-highlights__faq {
    padding: 40px 15px;
  }

  .page-index-platform-highlights__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-index-platform-highlights__advantage-item {
    padding: 25px;
  }

  .page-index-platform-highlights__advantage-title {
    font-size: 1.6em;
  }

  .page-index-platform-highlights__cta-description {
    font-size: 1.1em;
  }

  .page-index-platform-highlights__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-platform-highlights__hero-title {
    font-size: 1.8em;
  }

  .page-index-platform-highlights__hero-description {
    font-size: 1em;
  }

  .page-index-platform-highlights__section-title {
    font-size: 1.6em;
  }

  .page-index-platform-highlights__advantage-title {
    font-size: 1.4em;
  }

  .page-index-platform-highlights__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}