#best{
  width: 100%;
  height: 300px;
  background-image: url(../images/stethoscope.jpg);
    background-size: cover;      /* fills the div */
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
#best h1{
 color: #fff;
  display: flex;
}
#best P{
    color: #fff;
} 
.service-page{
    max-width:1000px;
    margin:50px auto;
    padding:20px;
    line-height:1.8;
}

.service-page h1{
    color:#28a745;
    margin-bottom:20px;
    font-size:40px;
}

.consultation-item{
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 5px solid #0a7b5f;
    border-radius: 6px;
}

.consultation-item h3{
    color: #0a7b5f;
    margin-bottom: 10px;
    font-size: 22px;
}

.consultation-item p{
    color: #555;
    line-height: 1.8;
    text-align: justify;
}


.footer {
  background: #0b3c49;
  color: #fff;
  padding: 40px 20px 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #00d1b2;
}

.footer-column p {
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}

.social-icons a:hover {
  color: #00d1b2;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff44;
  padding-top: 10px;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

