
.ctaBanner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1e5b96, #1768ff);
  text-align: center;
  color: white;
}

.ctaBanner h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.ctaBanner p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.cta-button {
  text-decoration: none;
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials h2,
  .ctaBanner h2 {
    font-size: 2.2rem;
  }

  .testimonial p,
  .ctaBanner p {
    font-size: 1rem;
  }

  .testimonial,
  .cta-button {
    max-width: 90%;
  }
}

