.page-index-user-testimonials {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1A2035;
  background-color: #f8f8f8;
}

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

.page-index-user-testimonials__hero {
  background: linear-gradient(135deg, #1A2035 0%, #3a476f 100%); /* Darker blue gradient */
  color: #FFD700; /* Gold text for contrast */
  padding: 100px 0;
  text-align: center;
}

.page-index-user-testimonials__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-user-testimonials__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e5dfca; /* Lighter gold/cream for subtitle */
}

.page-index-user-testimonials__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2035; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-user-testimonials__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-index-user-testimonials__section-title {
  font-size: 2.5em;
  color: #1A2035;
  text-align: center;
  margin-bottom: 40px;
  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__intro-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-index-user-testimonials__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-index-user-testimonials__text-content {
  flex: 2;
  font-size: 1.1em;
}

.page-index-user-testimonials__text-content p {
  margin-bottom: 20px;
}

.page-index-user-testimonials__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-index-user-testimonials__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.page-index-user-testimonials__section-description {
  text-align: center;
  font-size: 1.1em;
  color: #5f6372;
  margin-bottom: 50px;
}

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

.page-index-user-testimonials__testimonial-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-user-testimonials__testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-index-user-testimonials__card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-index-user-testimonials__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #FFD700;
}

.page-index-user-testimonials__user-info {
  display: flex;
  flex-direction: column;
}

.page-index-user-testimonials__username {
  font-size: 1.3em;
  color: #1A2035;
  margin: 0;
}

.page-index-user-testimonials__rating {
  color: #FFD700;
  font-size: 1.1em;
}

.page-index-user-testimonials__card-text {
  font-size: 1em;
  color: #333333;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-index-user-testimonials__timestamp {
  font-size: 0.9em;
  color: #777777;
  text-align: right;
}

.page-index-user-testimonials__cta-banner {
  background-color: #1A2035; /* Dark blue background */
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.page-index-user-testimonials__banner-image {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials__banner-content {
  flex: 1;
  min-width: 280px;
}

.page-index-user-testimonials__banner-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-user-testimonials__banner-text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e5dfca;
}

.page-index-user-testimonials__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-index-user-testimonials__key-features {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-index-user-testimonials__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-user-testimonials__feature-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-index-user-testimonials__feature-title {
  font-size: 1.5em;
  color: #1A2035;
  margin-bottom: 15px;
}

.page-index-user-testimonials__feature-text {
  color: #5f6372;
  font-size: 0.95em;
}

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

.page-index-user-testimonials__faq-item {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-index-user-testimonials__faq-question {
  font-size: 1.3em;
  color: #1A2035;
  margin-top: 0;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-user-testimonials__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-index-user-testimonials__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

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

.page-index-user-testimonials__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-user-testimonials__faq-answer a:hover {
  text-decoration: underline;
}

.page-index-user-testimonials__conclusion-cta {
  padding: 80px 0;
  background-color: #1A2035;
  color: #ffffff;
  text-align: center;
}

.page-index-user-testimonials__conclusion-text {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #e5dfca;
}

.page-index-user-testimonials__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-user-testimonials__cta-button--primary {
  background-color: #FFD700;
  color: #1A2035;
}

.page-index-user-testimonials__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-index-user-testimonials__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-user-testimonials__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2035;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-user-testimonials__hero-title {
    font-size: 2.5em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 2em;
  }
  .page-index-user-testimonials__content-wrapper {
    flex-direction: column;
  }
  .page-index-user-testimonials__image-wrapper {
    margin-top: 30px;
  }
  .page-index-user-testimonials__cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .page-index-user-testimonials__banner-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-user-testimonials__hero {
    padding: 80px 0;
  }
  .page-index-user-testimonials__hero-title {
    font-size: 2em;
  }
  .page-index-user-testimonials__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-user-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .page-index-user-testimonials__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-user-testimonials__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-user-testimonials__hero {
    padding: 60px 0;
  }
  .page-index-user-testimonials__hero-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__hero-subtitle {
    font-size: 1em;
  }
  .page-index-user-testimonials__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.5em;
  }
  .page-index-user-testimonials__testimonial-card {
    padding: 20px;
  }
  .page-index-user-testimonials__banner-title {
    font-size: 1.5em;
  }
  .page-index-user-testimonials__banner-text {
    font-size: 1em;
  }
}