/* Main Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Custom colors */
.bg-blue-gradient {
  background: linear-gradient(to right, #0072bc, #005796);
}

/* Animation */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* Process steps */
.process-step {
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: #e2e8f0;
  display: none;
}

@media (min-width: 768px) {
  .process-step::after {
    display: block;
  }

  .process-step:last-child::after {
    display: none;
  }
}

/* Custom form styles */
.form-input:focus {
  border-color: #0072bc;
  box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.2);
}

