.cta-button, .btn-primary, .btn-secondary, .btn-white, .btn-journey {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem 1.0rem;
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  border: none; /* Add this line to remove default border */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
    background: white;
    color: #4A90E2;
    padding: 1rem 2rem;
    border: 2px solid #4A90E2;
    border-radius: 30px;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: white;
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: #4A90E2;
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-journey {
  background-color: #2563eb;
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 9999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.btn-journey:hover {
  background-color: #1e4ed8;
}
