.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Midnight Blue */
}

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

.page-index-user-testimonials__hero {
  background: linear-gradient(135deg, #0A1931 0%, #2a3d58 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-index-user-testimonials__hero-subtitle {
  font-size: 1.4em;
  color: #B0C4DE; /* Light steel blue */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-user-testimonials__hero-cta {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Midnight Blue */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-user-testimonials__hero-cta:hover {
  background-color: #e6c200; /* Darker gold */
  transform: translateY(-3px);
}

.page-index-user-testimonials__section {
  padding: 80px 0;
}

.page-index-user-testimonials__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-index-user-testimonials__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-index-user-testimonials__section-description {
  font-size: 1.1em;
  color: #B0C4DE;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

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

.page-index-user-testimonials__about .page-index-user-testimonials__text-content {
  flex: 1;
}

.page-index-user-testimonials__about .page-index-user-testimonials__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

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

.page-index-user-testimonials__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold */
  color: #0A1931; /* Midnight Blue */
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

.page-index-user-testimonials__btn:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-user-testimonials__testimonials-grid {
  background-color: #1A2A44; /* Slightly lighter dark blue */
}

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

.page-index-user-testimonials__testimonial-card {
  background-color: #0A1931;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-index-user-testimonials__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

.page-index-user-testimonials__testimonial-quote {
  font-size: 1.05em;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 20px;
  font-style: italic;
}

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

.page-index-user-testimonials__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-index-user-testimonials__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-index-user-testimonials__faq {
  background-color: #0A1931;
}

.page-index-user-testimonials__faq-item {
  background-color: #1A2A44;
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-index-user-testimonials__faq-item:hover {
  background-color: #2a3d58;
}

.page-index-user-testimonials__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-index-user-testimonials__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-index-user-testimonials__faq-answer {
  font-size: 1.05em;
  color: #B0C4DE;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-index-user-testimonials__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

.page-index-user-testimonials__action {
  background: linear-gradient(45deg, #0A1931 0%, #2a3d58 100%);
  text-align: center;
  padding: 80px 0;
}

.page-index-user-testimonials__action-content {
  max-width: 900px;
}

.page-index-user-testimonials__action-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.page-index-user-testimonials__action .page-index-user-testimonials__section-title {
  margin-bottom: 20px;
}

.page-index-user-testimonials__action .page-index-user-testimonials__section-title::after {
  display: none;
}

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

.page-index-user-testimonials__btn--primary {
  background-color: #FFD700;
  color: #0A1931;
}

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

.page-index-user-testimonials__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-user-testimonials__hero-title {
    font-size: 2.8em;
  }
  .page-index-user-testimonials__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 2.2em;
  }
  .page-index-user-testimonials__about .page-index-user-testimonials__content-grid {
    flex-direction: column;
  }
  .page-index-user-testimonials__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-user-testimonials__hero {
    padding: 80px 0;
  }
  .page-index-user-testimonials__hero-title {
    font-size: 2.2em;
  }
  .page-index-user-testimonials__hero-subtitle {
    font-size: 1em;
  }
  .page-index-user-testimonials__section {
    padding: 60px 0;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__testimonial-card {
    padding: 25px;
  }
  .page-index-user-testimonials__testimonial-name {
    font-size: 1.3em;
  }
  .page-index-user-testimonials__faq-question {
    font-size: 1.2em;
  }
  .page-index-user-testimonials__action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-user-testimonials__btn--large,
  .page-index-user-testimonials__btn--primary,
  .page-index-user-testimonials__btn--secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-index-user-testimonials__hero-title {
    font-size: 1.8em;
  }
  .page-index-user-testimonials__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-user-testimonials__section-title {
    font-size: 1.6em;
  }
  .page-index-user-testimonials__grid {
    grid-template-columns: 1fr;
  }
  .page-index-user-testimonials__testimonial-card {
    padding: 20px;
  }
  .page-index-user-testimonials__action-icon {
    width: 80px;
    height: 80px;
  }
}