.page-index-user-testimonials {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2239; /* Primary dark background */
  line-height: 1.6;
}

.page-index-user-testimonials__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2239 0%, #1A3B5C 100%); /* Gradient with primary color */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-index-user-testimonials__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-index-user-testimonials__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary gold for highlight */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-user-testimonials__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-index-user-testimonials__hero-cta {
  display: inline-block;
  background-color: #DC143C; /* Red for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #DC143C;
}

.page-index-user-testimonials__hero-cta:hover {
  background-color: #FF4500; /* Darker red on hover */
  transform: translateY(-2px);
}

.page-index-user-testimonials__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 800px;
  z-index: 0;
}

.page-index-user-testimonials__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-index-user-testimonials__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index-user-testimonials__section-intro {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-user-testimonials__why-trust {
  background-color: #0F2A43;
}

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

.page-index-user-testimonials__feature-item {
  background-color: #1A3B5C; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-align: left;
}

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

.page-index-user-testimonials__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold shadow for icons */
}

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

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

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

.page-index-user-testimonials__testimonial-card {
  background-color: #1A3B5C; /* Darker blue for testimonial cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-index-user-testimonials__testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #FFD700; /* Gold border for avatars */
}

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

.page-index-user-testimonials__testimonial-name {
  font-weight: bold;
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-index-user-testimonials__stars {
  color: #FFD700; /* Gold stars */
  font-size: 1.1em;
}

.page-index-user-testimonials__testimonial-quote {
  font-style: italic;
  color: #E0E0E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-user-testimonials__testimonial-date {
  font-size: 0.9em;
  color: #A0A0A0;
  text-align: right;
}

.page-index-user-testimonials__cta-banner {
  background: linear-gradient(45deg, #DC143C 0%, #FF4500 100%); /* Red gradient for CTA */
  color: #FFFFFF;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-index-user-testimonials__cta-content {
  max-width: 800px;
  margin-bottom: 40px;
}

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

.page-index-user-testimonials__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

.page-index-user-testimonials__cta-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.page-index-user-testimonials__cta-btn--primary {
  background-color: #FFD700; /* Gold for primary CTA button */
  color: #0A2239; /* Dark text on gold */
  border-color: #FFD700;
}

.page-index-user-testimonials__cta-btn--primary:hover {
  background-color: #E6C200;
  transform: translateY(-2px);
}

.page-index-user-testimonials__cta-btn--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-index-user-testimonials__cta-btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-index-user-testimonials__cta-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.page-index-user-testimonials__cta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-index-user-testimonials__faq-item {
  background-color: #1A3B5C;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-index-user-testimonials__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  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;
}

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

.page-index-user-testimonials__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-index-user-testimonials__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
}

.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__responsible-gaming {
  background-color: #0F2A43;
  padding-bottom: 80px;
}

.page-index-user-testimonials__responsible-gaming-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .page-index-user-testimonials__hero {
    padding: 60px 15px;
  }

  .page-index-user-testimonials__hero-title {
    font-size: 2.5em;
  }

  .page-index-user-testimonials__hero-description {
    font-size: 1.1em;
  }

  .page-index-user-testimonials__features-grid {
    grid-template-columns: 1fr;
  }

  .page-index-user-testimonials__testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-index-user-testimonials__cta-banner {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-index-user-testimonials__cta-title {
    font-size: 2.2em;
  }

  .page-index-user-testimonials__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-user-testimonials__hero-title {
    font-size: 2em;
  }

  .page-index-user-testimonials__section-title {
    font-size: 2em;
  }

  .page-index-user-testimonials__hero-cta,
  .page-index-user-testimonials__cta-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-index-user-testimonials__feature-title {
    font-size: 1.3em;
  }

  .page-index-user-testimonials__cta-title {
    font-size: 1.8em;
  }
}