.page-index-latest-reviews {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-index-latest-reviews__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-reviews__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

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

.page-index-latest-reviews__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-index-latest-reviews__hero-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.1;
  z-index: 0;
}

.page-index-latest-reviews__hero-image img {
  width: 400px;
  height: auto;
  transform: rotate(15deg);
}

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

.page-index-latest-reviews__btn--primary {
  background-color: #0056b3;
  color: #fff;
  border: 2px solid #0056b3;
}

.page-index-latest-reviews__btn--primary:hover {
  background-color: #003f80;
  border-color: #003f80;
  transform: translateY(-2px);
}

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

.page-index-latest-reviews__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-index-latest-reviews__btn--success {
  background-color: #28a745;
  color: #fff;
  border: 2px solid #28a745;
}

.page-index-latest-reviews__btn--success:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
  transform: translateY(-2px);
}

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

.page-index-latest-reviews__btn--xl {
  padding: 20px 50px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-index-latest-reviews__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-latest-reviews__section--reviews {
  background-color: #fff;
}

.page-index-latest-reviews__section--guide {
  background-color: #f0f8ff;
}

.page-index-latest-reviews__section--faq {
  background-color: #fff;
}

.page-index-latest-reviews__section--final-cta {
  background: linear-gradient(45deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
}

.page-index-latest-reviews__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #007bff;
  font-weight: bold;
}

.page-index-latest-reviews__section-title .text-primary {
  color: #007bff;
}

.page-index-latest-reviews__section-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
}

.page-index-latest-reviews__review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-reviews__review-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #007bff;
}

.page-index-latest-reviews__review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-reviews__review-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-index-latest-reviews__review-card-text {
  font-size: 1em;
  color: #666;
}

.page-index-latest-reviews__cta-box {
  background-color: #e6f2ff;
  padding: 40px;
  border-radius: 12px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #cce0ff;
}

.page-index-latest-reviews__cta-box--download {
  background-color: #e6ffe6;
  border: 1px solid #ccffcc;
}

.page-index-latest-reviews__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #0056b3;
  font-weight: bold;
}

.page-index-latest-reviews__cta-box--download .page-index-latest-reviews__cta-text {
  color: #1e7e34;
}

.page-index-latest-reviews__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-latest-reviews__guide-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-index-latest-reviews__guide-item:hover {
  transform: translateY(-5px);
}

.page-index-latest-reviews__guide-icon {
  width: 80px;
  height: 80px;
  background-color: #e0f2f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.page-index-latest-reviews__guide-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

.page-index-latest-reviews__guide-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

.page-index-latest-reviews__guide-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #28a745;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.page-index-latest-reviews__guide-link:hover {
  background-color: #1e7e34;
}

.page-index-latest-reviews__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-reviews__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.page-index-latest-reviews__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-latest-reviews__faq-answer {
  font-size: 1.05em;
  color: #555;
}

.page-index-latest-reviews__final-cta-content {
  max-width: 800px;
}

.page-index-latest-reviews__final-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.page-index-latest-reviews__final-cta-title .text-primary {
  color: #fff;
}

.page-index-latest-reviews__final-cta-description {
  font-size: 1.5em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-reviews__hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-reviews__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-latest-reviews__section-title {
    font-size: 2.2em;
  }
  .page-index-latest-reviews__review-grid,
  .page-index-latest-reviews__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-index-latest-reviews__hero-image {
    display: none;
  }
  .page-index-latest-reviews__final-cta-title {
    font-size: 2.5em;
  }
  .page-index-latest-reviews__final-cta-description {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-reviews__hero {
    padding: 80px 0;
  }
  .page-index-latest-reviews__hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-reviews__hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-reviews__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-index-latest-reviews__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index-latest-reviews__btn--xl {
    padding: 18px 40px;
    font-size: 1.2em;
  }
  .page-index-latest-reviews__section {
    padding: 60px 0;
  }
  .page-index-latest-reviews__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-reviews__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
  }
  .page-index-latest-reviews__review-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-reviews__cta-text {
    font-size: 1.3em;
  }
  .page-index-latest-reviews__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-index-latest-reviews__final-cta-title {
    font-size: 2em;
  }
  .page-index-latest-reviews__final-cta-description {
    font-size: 1.1em;
  }
  .page-index-latest-reviews__review-card-title {
    font-size: 1.5em;
  }
  .page-index-latest-reviews__guide-title {
    font-size: 1.4em;
  }
  .page-index-latest-reviews__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-index-latest-reviews__hero {
    padding: 60px 0;
  }
  .page-index-latest-reviews__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-reviews__hero-subtitle {
    font-size: 0.9em;
  }
  .page-index-latest-reviews__btn {
    display: block;
    width: fit-content;
    margin: 10px auto;
  }
  .page-index-latest-reviews__section {
    padding: 40px 0;
  }
  .page-index-latest-reviews__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-reviews__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-index-latest-reviews__cta-text {
    font-size: 1.1em;
  }
  .page-index-latest-reviews__final-cta-title {
    font-size: 1.8em;
  }
  .page-index-latest-reviews__final-cta-description {
    font-size: 1em;
  }
  .page-index-latest-reviews__review-card-title {
    font-size: 1.3em;
  }
  .page-index-latest-reviews__guide-title {
    font-size: 1.2em;
  }
  .page-index-latest-reviews__faq-question {
    font-size: 1.1em;
  }
}

.page-index-latest-reviews .text-primary {
  color: #007bff;
}

/* Ensure contrast for text over primary/auxiliary backgrounds */
.page-index-latest-reviews__hero-title, 
.page-index-latest-reviews__hero-subtitle, 
.page-index-latest-reviews__btn--secondary, 
.page-index-latest-reviews__final-cta-title, 
.page-index-latest-reviews__final-cta-description {
  color: #fff; /* White text for dark/colored backgrounds */
}

.page-index-latest-reviews__section-title, 
.page-index-latest-reviews__review-card-title, 
.page-index-latest-reviews__guide-title, 
.page-index-latest-reviews__faq-question {
  color: #007bff; /* Primary color for titles on light backgrounds */
}

.page-index-latest-reviews__section-description, 
.page-index-latest-reviews__review-card-text, 
.page-index-latest-reviews__guide-text, 
.page-index-latest-reviews__faq-answer {
  color: #333; /* Dark text for body content on light backgrounds */
}

.page-index-latest-reviews__cta-text {
  color: #0056b3; /* Darker shade of primary for CTA text */
}

.page-index-latest-reviews__cta-box--download .page-index-latest-reviews__cta-text {
  color: #1e7e34; /* Darker shade of auxiliary for download CTA text */
}