.ctac{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 20px;
}
.cts-button {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
}

.cts-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
    color: #fff;
}

.cts-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


.cts-button.alt {
  background:linear-gradient(135deg, #00bbd3, #038d9e);
}

@media (max-width: 500px) {
  .cts-button {
    width: 100%;
    max-width: 300px;
  }
}