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

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

.page-platform-reviews-hero {
  background: linear-gradient(135deg, #0A2463, #3A5B9C); /* Slightly lighter gradient end for visual appeal */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-platform-reviews-hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary color for title emphasis */
}

.page-platform-reviews-hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-platform-reviews-hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-platform-reviews-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-platform-reviews-bg-light {
  background-color: #f9f9f9;
}

.page-platform-reviews-section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-platform-reviews-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #E3B505;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-platform-reviews-subtitle {
  font-size: 1.6em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #E3B505;
  padding-left: 15px;
}

.page-platform-reviews-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-platform-reviews-btn {
  display: inline-block;
  background-color: #E3B505; /* Auxiliary color for buttons */
  color: #0A2463; /* Dark text on auxiliary background for contrast */
  padding: 14px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-platform-reviews-btn:hover {
  background-color: #f5c83b; /* Slightly lighter yellow on hover */
  transform: translateY(-2px);
}

.page-platform-reviews-btn-primary {
  background-color: #0A2463; /* Main color for primary buttons */
  color: #E3B505; /* Auxiliary color for text on main background */
}

.page-platform-reviews-btn-primary:hover {
  background-color: #1a3c7e;
  transform: translateY(-2px);
}

.page-platform-reviews-btn-secondary {
  background-color: #f0f0f0;
  color: #0A2463;
  border: 1px solid #ddd;
}

.page-platform-reviews-btn-secondary:hover {
  background-color: #e0e0e0;
}

.page-platform-reviews-detail-pages {
  background-color: #f0f4f8;
}

.page-platform-reviews-detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-platform-reviews-detail-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-platform-reviews-detail-item:hover {
  transform: translateY(-5px);
}

.page-platform-reviews-detail-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-platform-reviews-detail-title a {
  text-decoration: none;
  color: #0A2463;
}

.page-platform-reviews-detail-title a:hover {
  color: #E3B505;
}

.page-platform-reviews-detail-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-platform-reviews-conclusion {
  text-align: center;
  padding-bottom: 80px;
}

.page-platform-reviews-conclusion .page-platform-reviews-img {
  max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-platform-reviews-hero-title {
    font-size: 2em;
  }
  .page-platform-reviews-section-title {
    font-size: 1.8em;
  }
  .page-platform-reviews-subtitle {
    font-size: 1.4em;
  }
  .page-platform-reviews-btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-platform-reviews-hero {
    padding: 60px 0;
  }
  .page-platform-reviews-hero-title {
    font-size: 1.6em;
  }
  .page-platform-reviews-hero-description {
    font-size: 0.95em;
  }
  .page-platform-reviews-section {
    padding: 40px 0;
  }
  .page-platform-reviews-section-title {
    font-size: 1.5em;
  }
  .page-platform-reviews-subtitle {
    font-size: 1.2em;
  }
  .page-platform-reviews-detail-list {
    grid-template-columns: 1fr;
  }
}