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

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

.page-index-platform-highlights__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-index-platform-highlights__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

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

.page-index-platform-highlights__btn--primary {
  background-color: #ffc107;
  color: #333;
}

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

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

.page-index-platform-highlights__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-index-platform-highlights__hero-image-wrapper {
  margin-top: 40px;
  max-width: 90%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-index-platform-highlights__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-index-platform-highlights__advantages-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index-platform-highlights__section-subtitle {
  font-size: 1.1em;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-index-platform-highlights__feature-card {
  background-color: #f1f7fe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-index-platform-highlights__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-platform-highlights__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-index-platform-highlights__feature-description {
  font-size: 1em;
  color: #555;
  text-align: left;
  flex-grow: 1;
}

.page-index-platform-highlights__btn--download {
  margin-top: 20px;
  background-color: #ffc107;
  color: #333;
}

.page-index-platform-highlights__btn--download:hover {
  background-color: #e0a800;
}

.page-index-platform-highlights__cta-banner {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-platform-highlights__cta-banner .page-index-platform-highlights__container {
  z-index: 1;
}

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

.page-index-platform-highlights__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  opacity: 0.9;
}

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

.page-index-platform-highlights__btn--accent {
  background-color: #ffc107;
  color: #333;
}

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

.page-index-platform-highlights__cta-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

.page-index-platform-highlights__cta-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-index-platform-highlights__faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-index-platform-highlights__faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px 30px;
}

.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: #555;
  display: block; /* Ensure it's always visible for this context */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-platform-highlights__hero-title {
    font-size: 2.5em;
  }
  .page-index-platform-highlights__section-title,
  .page-index-platform-highlights__cta-title {
    font-size: 2em;
  }
  .page-index-platform-highlights__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-platform-highlights__cta-image-wrapper {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .page-index-platform-highlights__hero-section,
  .page-index-platform-highlights__advantages-section,
  .page-index-platform-highlights__cta-banner,
  .page-index-platform-highlights__faq-section {
    padding: 60px 0;
  }
  .page-index-platform-highlights__hero-title {
    font-size: 2em;
  }
  .page-index-platform-highlights__hero-description {
    font-size: 1em;
  }
  .page-index-platform-highlights__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-platform-highlights__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-platform-highlights__section-title,
  .page-index-platform-highlights__cta-title {
    font-size: 1.8em;
  }
  .page-index-platform-highlights__feature-card {
    padding: 25px;
  }
  .page-index-platform-highlights__feature-title {
    font-size: 1.4em;
  }
  .page-index-platform-highlights__cta-image-wrapper {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-index-platform-highlights__hero-title {
    font-size: 1.8em;
  }
  .page-index-platform-highlights__section-title,
  .page-index-platform-highlights__cta-title {
    font-size: 1.5em;
  }
  .page-index-platform-highlights__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-index-platform-highlights__btn {
    width: 100%;
  }
}