
    
/* Trustpilot Section with Gradient */
.trustpilot-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(to right, #1e3a8a, #2563eb);
  text-align: center;
  color: #ffffff;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 1rem;
  margin-top: 5rem;
}

.trustpilot-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.trustpilot-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.trustpilot-section p {
  font-size: 1.1rem;
  color: #e0f2fe;
  margin-bottom: 2rem;
}

.trustpilot-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.trustpilot-stars img {
  height: 32px;
  width: auto;
  filter: brightness(100%);
}

.trustpilot-rating {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
}

/* Review Button */
.trustpilot-btn {
  background: #22d3ee;
  color: #0f172a;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.trustpilot-btn:hover {
  background: #0ea5e9;
  color: #ffffff;
}

/* Dark Mode */
body.dark-mode .trustpilot-section {
  background: linear-gradient(to right, #0f172a, #1e293b);
  color: #f1f5f9;
}

body.dark-mode .trustpilot-section h2 {
  color: #f1f5f9;
}

body.dark-mode .trustpilot-section p {
  color: #cbd5e1;
}

body.dark-mode .trustpilot-stars img {
  filter: brightness(90%) contrast(120%);
}

body.dark-mode .trustpilot-rating {
  color: #e2e8f0;
}

body.dark-mode .trustpilot-btn {
  background-color: #38bdf8;
  color: #ffffff;
}

body.dark-mode .trustpilot-btn:hover {
  background-color: #0ea5e9;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 640px) {
  .trustpilot-section h2 {
    font-size: 1.5rem;
  }

  .trustpilot-section p {
    font-size: 1rem;
  }

  .trustpilot-btn {
    width: 100%;
    text-align: center;
  }
}
