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

.page-platforms-platform-c-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-platforms-platform-c-review__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-platforms-platform-c-review__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-platforms-platform-c-review__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-platforms-platform-c-review__cta-button {
  display: inline-block;
  background-color: #ffc107; /* A vibrant yellow for contrast */
  color: #333;
  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;
  border: none;
  cursor: pointer;
}

.page-platforms-platform-c-review__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-platforms-platform-c-review__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-platforms-platform-c-review__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-platforms-platform-c-review__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-platforms-platform-c-review__introduction-section,
.page-platforms-platform-c-review__conclusion-section,
.page-platforms-platform-c-review__faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-platforms-platform-c-review__introduction-section p,
.page-platforms-platform-c-review__conclusion-section p,
.page-platforms-platform-c-review__faq-answer {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #555;
}

.page-platforms-platform-c-review__feature-section {
  padding: 80px 0;
}

.page-platforms-platform-c-review__feature-section--even {
  background-color: #f1f7fe; /* Light blue tint */
}

.page-platforms-platform-c-review__feature-section--odd {
  background-color: #e6f7ee; /* Light green tint */
}

.page-platforms-platform-c-review__feature-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-platforms-platform-c-review__feature-grid--reverse {
  flex-direction: row-reverse;
}

.page-platforms-platform-c-review__feature-content {
  flex: 1;
}

.page-platforms-platform-c-review__feature-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-platforms-platform-c-review__feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-platforms-platform-c-review__feature-title {
  font-size: 2em;
  color: #0056b3;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-platforms-platform-c-review__feature-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-platforms-platform-c-review__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-platforms-platform-c-review__list li {
  margin-bottom: 10px;
  color: #555;
}

.page-platforms-platform-c-review__app-download-section {
  padding: 80px 0;
  background-color: #e9ecef;
  text-align: center;
}

.page-platforms-platform-c-review__app-download-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.page-platforms-platform-c-review__app-info {
  max-width: 500px;
  text-align: left;
}

.page-platforms-platform-c-review__app-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-platforms-platform-c-review__qr-image {
  width: 200px;
  height: 200px;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.page-platforms-platform-c-review__download-note {
  font-style: italic;
  margin-top: 15px;
  color: #777;
  font-size: 0.95em;
}

.page-platforms-platform-c-review__faq-item {
  background-color: #fefefe;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-platforms-platform-c-review__faq-answer {
  font-size: 1.05em;
  color: #666;
  display: block; /* Ensure it's visible by default, JS can toggle */
}

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

  .page-platforms-platform-c-review__hero-subtitle {
    font-size: 1.3em;
  }

  .page-platforms-platform-c-review__section-title {
    font-size: 2em;
  }

  .page-platforms-platform-c-review__feature-grid {
    flex-direction: column;
    text-align: center;
  }

  .page-platforms-platform-c-review__feature-grid--reverse {
    flex-direction: column;
  }

  .page-platforms-platform-c-review__app-download-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-platforms-platform-c-review__app-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-platforms-platform-c-review__hero-section {
    padding: 80px 0;
  }

  .page-platforms-platform-c-review__hero-title {
    font-size: 2.2em;
  }

  .page-platforms-platform-c-review__hero-subtitle {
    font-size: 1.1em;
  }

  .page-platforms-platform-c-review__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-platforms-platform-c-review__section-title {
    font-size: 1.8em;
  }

  .page-platforms-platform-c-review__feature-title {
    font-size: 1.6em;
  }

  .page-platforms-platform-c-review__introduction-section,
  .page-platforms-platform-c-review__feature-section,
  .page-platforms-platform-c-review__app-download-section,
  .page-platforms-platform-c-review__conclusion-section,
  .page-platforms-platform-c-review__faq-section {
    padding: 40px 0;
  }

  .page-platforms-platform-c-review__list {
    padding-left: 15px;
  }

  .page-platforms-platform-c-review__faq-question {
    font-size: 1.2em;
  }
}