.contact-us-btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.125rem; /* 18px */
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #f43f5e, #a855f7, #3b82f6);
  border: none;
  border-radius: 9999px; /* Fully rounded */
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.contact-us-btn:focus {
  outline: 2px dashed #fff;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .contact-us-btn {
    font-size: 1rem; /* Slightly smaller on mobile */
    padding: 10px 20px;
  }
}
