.logo {
  height: 90px;  /* adjust if needed */
  width: auto;
}
/* Healthcare Reliable Hero */
.hero {
  background-color: #F4F1FA;
  padding: 90px 20px;
  text-align: center;
}

.hero-logo {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2E2E2E;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
}

.cta-button {
  background-color: #6F63C2;
  color: #fff;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.cta-button:hover {
  background-color: #5B51A8;
  color: #fff;
}

/* Header phone styling */
.header-phone {
  font-size: 0.95rem;
  font-weight: 600;
}

.phone-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-link:hover {
  color: #E6E0FF;
  text-decoration: none;
}

/* Make sure it stays clean on mobile */
@media (max-width: 768px) {
  .header-phone {
    display: none;
  }
}

/* Mobile Call Button */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #6F63C2;
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-call-btn {
    display: inline-block;
  }
}
