.page-index-platform-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-index-platform-features__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-platform-features__hero-title .highlight {
  color: #ffc107;
}

.page-index-platform-features__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

.page-index-platform-features__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-index-platform-features__btn--primary {
  background-color: #ffc107;
  color: #000000;
}

.page-index-platform-features__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-index-platform-features__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-platform-features__btn--secondary:hover {
  background-color: #ffffff;
  color: #007bff;
  transform: translateY(-3px);
}

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

.page-index-platform-features__btn--link:hover {
  color: #0056b3;
  text-decoration: none;
}

.page-index-platform-features__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-platform-features__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-platform-features__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-platform-features__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
}

.page-index-platform-features__section-subtitle {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-platform-features__intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 50px;
}

.page-index-platform-features__intro-text {
  flex: 1;
}

.page-index-platform-features__intro-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
}

.page-index-platform-features__intro-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-platform-features__img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-index-platform-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-platform-features__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-platform-features__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-platform-features__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

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

.page-index-platform-features__grid-item p {
  font-size: 1em;
  color: #555;
  margin-bottom: 10px;
}

.page-index-platform-features__cta {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #ffffff;
  padding: 100px 0;
}

.page-index-platform-features__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-platform-features__faq-list {
  margin-top: 50px;
  text-align: left;
}

.page-index-platform-features__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-platform-features__faq-question {
  font-size: 1.2em;
  color: #007bff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f8ff;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-platform-features__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-platform-features__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-platform-features__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index-platform-features__faq-answer p {
  margin: 15px 0;
  color: #555;
}

.page-index-platform-features__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-bottom: 20px;
}

.page-index-platform-features__faq-answer a {
  color: #007bff;
  text-decoration: none;
}

.page-index-platform-features__faq-answer a:hover {
  text-decoration: underline;
}

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

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

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

  .page-index-platform-features__intro-content {
    flex-direction: column;
    text-align: center;
  }

  .page-index-platform-features__intro-image {
    margin-top: 30px;
  }

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

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

@media (max-width: 768px) {
  .page-index-platform-features__hero {
    padding: 80px 0;
  }

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

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

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

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

  .page-index-platform-features__section {
    padding: 60px 0;
  }

  .page-index-platform-features__section-title {
    font-size: 1.8em;
  }

  .page-index-platform-features__section-subtitle {
    font-size: 1em;
  }

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

  .page-index-platform-features__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-index-platform-features__faq-answer p {
    font-size: 0.95em;
  }
}