/* style/expert-reviews-platform-a-review.css */
.page-expert-reviews-platform-a-review {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2E36; /* Main background color */
  line-height: 1.6;
}

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

.page-expert-reviews-platform-a-review .hero-section {
  background: linear-gradient(135deg, #0A2E36, #1A4D5C); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero titles */
}

.page-expert-reviews-platform-a-review .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-expert-reviews-platform-a-review .hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

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

.page-expert-reviews-platform-a-review .btn-primary {
  background-color: #FFD700; /* Gold for primary buttons */
  color: #0A2E36; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-expert-reviews-platform-a-review .btn-primary:hover {
  background-color: #E6C200;
  color: #000;
}

.page-expert-reviews-platform-a-review .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary buttons */
  border: 2px solid #FFD700;
}

.page-expert-reviews-platform-a-review .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2E36;
}

.page-expert-reviews-platform-a-review .btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-expert-reviews-platform-a-review .content-block {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-expert-reviews-platform-a-review .content-block:last-of-type {
  border-bottom: none;
}

.page-expert-reviews-platform-a-review .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-expert-reviews-platform-a-review .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-expert-reviews-platform-a-review .subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-expert-reviews-platform-a-review p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-expert-reviews-platform-a-review ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-expert-reviews-platform-a-review ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-expert-reviews-platform-a-review ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
  font-size: 1.2em;
}

.page-expert-reviews-platform-a-review .content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-expert-reviews-platform-a-review .call-to-action-block {
  background-color: #1A4D5C; /* Slightly lighter blue for CTA block */
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-reviews-platform-a-review .call-to-action-block p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #F8F8F8;
}

.page-expert-reviews-platform-a-review .final-cta {
  background-color: #0A2E36;
  border: 2px solid #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-expert-reviews-platform-a-review .hero-title {
    font-size: 2.5em;
  }

  .page-expert-reviews-platform-a-review .hero-subtitle {
    font-size: 1.2em;
  }

  .page-expert-reviews-platform-a-review .section-title {
    font-size: 2em;
  }

  .page-expert-reviews-platform-a-review .subsection-title {
    font-size: 1.5em;
  }

  .page-expert-reviews-platform-a-review .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-expert-reviews-platform-a-review .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-expert-reviews-platform-a-review .call-to-action-block {
    padding: 30px 20px;
  }

  .page-expert-reviews-platform-a-review .call-to-action-block p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-expert-reviews-platform-a-review .hero-title {
    font-size: 2em;
  }

  .page-expert-reviews-platform-a-review .hero-subtitle {
    font-size: 1em;
  }

  .page-expert-reviews-platform-a-review .section-title {
    font-size: 1.8em;
  }

  .page-expert-reviews-platform-a-review .subsection-title {
    font-size: 1.3em;
  }

  .page-expert-reviews-platform-a-review .btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .page-expert-reviews-platform-a-review .call-to-action-block .btn {
    margin-bottom: 0;
  }
}