.steps-wrapper {
  position: relative;
  max-width: 700px;
  margin: 0;
  padding-left: 0;
}

.steps-wrapper::before {
  content: "";
  position: absolute;
  left: 20px; /* center of number circle */
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d9e4ec;
  transform: translateX(-50%);
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  position: relative;
  padding-left: 50px; /* pushes text right, number stays on line */
}

.step-number {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background: #e7f5ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  z-index: 2;
}

.step-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.step-content p {
  margin: 5px 0 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.sticky-nav {
  position: sticky;     /* core sticky */
  top: 0;               /* required */
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 99999;       /* higher than header/sections */
  padding: 12px 20px;
  border-bottom: 1px solid #e5e5e5;
}

.sticky-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.sticky-nav ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  padding: 6px 0;
  display: inline-block;
  transition: 0.2s ease;
}

.sticky-nav ul li a.active,
.sticky-nav ul li a:hover {
  color: #0077ff;
  border-bottom: 2px solid #0077ff;
}

.sticky-bar {
  position: sticky !important;
  top: 0;
  z-index: 99999 !important;
  background: #fff;
}


.gev-contact-widget {
  width: 100%;
  max-width: 350px;
  background: transparent;
  font-family: 'Rubik', sans-serif;
	margin: 0 auto;
}

.gev-form-box {
  background: #2f89b3;
  padding: 20px;
  border-radius: 12px;
  color: white;
  margin-bottom: 20px;
}

.gev-form-header {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

.gev-form input {
  width: 100%;
  background: white;
  border: none;
  border-bottom: 1px solid #d9e0e8;
  padding: 12px 8px;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #5d666f;
}

.gev-form button {
  width: 100%;
  background: #0f3c51;
  color: white;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}

.gev-info-box {
  display: flex;
  align-items: center;
  background: white;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #e5e8ec;
  color: #000;
}

.gev-icon {
  font-size: 22px;
  margin-right: 12px;
}

.gev-info-box strong {
  font-size: 18px;
  color: #000;
}

.gev-info-box small {
  font-size: 13px;
  color: #5d666f;
}