
/* ================= PRE SCHEDULE SECTION ================= */
.appointment-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.appointment-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Content overlay */
.appointment-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #2d1a5a;
}

/* Text styles */
.eyebrow {
  font-size: 18px;
  color: #7c5fd3;
  margin-bottom: 12px;
}

.appointment-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.subtext {
  font-size: 20px;
  margin-bottom: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid #2d1a5a;
  border-radius: 6px;
  color: #2d1a5a;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 768px) {
  .appointment-content {
    position: static;
    transform: none;
    padding: 24px;
    max-width: 100%;
  }

  .appointment-content h2 {
    font-size: 30px;
  }
}
