.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark grey for good contrast on light backgrounds */
  background-color: #f8f9fa; /* Light background */
}

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

.page-index-user-testimonials__hero-section {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%); /* Darker blue gradient for hero */
  color: #ffffff; /* White text on dark blue background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_geometric,blue_gold_pattern]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-index-user-testimonials__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for highlight */
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  position: relative;
  z-index: 1;
}

.page-index-user-testimonials__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #007BFF; /* Blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-user-testimonials__btn--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-user-testimonials__btn--secondary {
  background-color: #007BFF; /* Blue background */
  color: #FFD700; /* Gold text on blue */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-index-user-testimonials__btn--secondary:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
}

.page-index-user-testimonials__testimonials-grid {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-index-user-testimonials__section-title {
  font-size: 2.5em;
  color: #007BFF; /* Primary blue for titles */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-user-testimonials__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-index-user-testimonials__testimonial-card {
  background-color: #fefefe;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #007BFF;
}

.page-index-user-testimonials__testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-index-user-testimonials__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFD700;
}

.page-index-user-testimonials__user-name {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-index-user-testimonials__rating {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.page-index-user-testimonials__feedback-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
  font-style: italic;
}

.page-index-user-testimonials__date {
  font-size: 0.9em;
  color: #888888;
}

.page-index-user-testimonials__why-choose-us {
  padding: 80px 0;
  background-color: #f0f4f8; /* Lighter blue-grey background */
  text-align: center;
}

.page-index-user-testimonials__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-index-user-testimonials__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-bottom: 4px solid #FFD700;
}

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

.page-index-user-testimonials__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-user-testimonials__feature-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index-user-testimonials__feature-description {
  color: #666666;
  font-size: 1em;
}

.page-index-user-testimonials__cta-text {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-index-user-testimonials__cta-download {
  background: linear-gradient(90deg, #007BFF, #0056b3);
  padding: 80px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__cta-download .page-index-user-testimonials__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.page-index-user-testimonials__cta-content {
  flex: 1;
  max-width: 55%;
  padding-right: 30px;
}

.page-index-user-testimonials__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-user-testimonials__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-index-user-testimonials__download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-user-testimonials__btn--download {
  background-color: #ffffff;
  color: #007BFF;
  padding: 12px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-user-testimonials__btn--download:hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
}

.page-index-user-testimonials__download-icon {
  width: 24px;
  height: 24px;
}

.page-index-user-testimonials__cta-image {
  flex: 1;
  max-width: 40%;
  text-align: center;
}

.page-index-user-testimonials__app-mockup {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page-index-user-testimonials__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-index-user-testimonials__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  transition: box-shadow 0.3s ease;
}

.page-index-user-testimonials__faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-index-user-testimonials__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-user-testimonials__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  font-weight: bold;
}

.page-index-user-testimonials__faq-item.active .page-index-user-testimonials__faq-question::after {
  content: '-';
}

.page-index-user-testimonials__faq-answer {
  font-size: 1.1em;
  color: #555555;
  display: none; /* Hidden by default, shown with JS */
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-index-user-testimonials__faq-item.active .page-index-user-testimonials__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-user-testimonials__hero-title {
    font-size: 2.5em;
  }
  .page-index-user-testimonials__hero-description {
    font-size: 1.1em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 2em;
  }
  .page-index-user-testimonials__cta-download .page-index-user-testimonials__container {
    flex-direction: column;
    text-align: center;
  }
  .page-index-user-testimonials__cta-content,
  .page-index-user-testimonials__cta-image {
    max-width: 100%;
    padding-right: 0;
  }
  .page-index-user-testimonials__cta-image {
    margin-top: 40px;
  }
  .page-index-user-testimonials__download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index-user-testimonials__hero-section,
  .page-index-user-testimonials__testimonials-grid,
  .page-index-user-testimonials__why-choose-us,
  .page-index-user-testimonials__cta-download,
  .page-index-user-testimonials__faq-section {
    padding: 60px 0;
  }
  .page-index-user-testimonials__hero-title {
    font-size: 2em;
  }
  .page-index-user-testimonials__grid-wrapper,
  .page-index-user-testimonials__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-user-testimonials__testimonial-card,
  .page-index-user-testimonials__feature-item {
    padding: 25px;
  }
  .page-index-user-testimonials__cta-title {
    font-size: 2.2em;
  }
  .page-index-user-testimonials__cta-description {
    font-size: 1em;
  }
  .page-index-user-testimonials__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-user-testimonials__hero-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__cta-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__download-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-index-user-testimonials__btn--download {
    width: 80%;
    justify-content: center;
  }
}