.driver-vertical {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 80px 20px;
  box-sizing: border-box;
}

.driver-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.driver-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.driver-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.driver-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

.driver-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
  position: relative;
  padding-bottom: 15px;
}

.driver-title::after {
  content: "";
  width: 100px;
  height: 2px;
  background-color: #004aad;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.driver-profile-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.driver-face-large {
  width: 400px;
  height: 400px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.driver-name {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.driver-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  max-width: 600px;
}