.cta-banner {
  background: linear-gradient(to right, #5aa4dc, #6db13f); /* blue to green */
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
  color: white;
}

.cta-banner h2 {
  font-size: 1.6em;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px #444;
}

.cta-banner p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cta-call-button {
  display: inline-block;
  background-color: #3498db;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1em;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  cursor: pointer;
}

.cta-call-button:hover {
  background-color: #2c80b4;
  transform: scale(1.05);
}
.cta-text a {
  color: white;
  text-decoration: none;
}

.cta-text a:hover {
  color: white;
  text-decoration: none;
}