body {
  font-family: 'Josefin Sans', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url(images/hospital.jpg) no-repeat center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
 
.bgcolor {
  background-color: rgba(210, 231, 248, 0.7);
  flex: 1;
}
 
 
header {
  background-color: #0081a7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
 
.logo {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  color: white;
}
 
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}
 
nav a {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
 
nav a:hover,
nav a:focus,
nav a:active {
  color: #003638;
}
 
.pIcon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
 
 
.about-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 60px;
  flex-wrap: wrap;
}
 
.about-text {
  color: #003638;
  font-size: 27px;
  font-weight: 600;
  max-width: 500px;
  text-align: left;
}
 
.about-text h2 {
  color: #0081a7;
  font-size: 40px;
  margin-bottom: 15px;
}
 
.about-image img {
  width: 500px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 129, 167, 0.3);
}
 
 
footer {
  width: 100%;
  background-color: #0081a7;
  color: white;
  text-align: center;
  padding: 20px 0 10px 0;
  margin-top: auto;
}
 
footer h2 {
  font-size: 20px;
  margin: 0 0 10px 0;
  font-family: 'Anton', sans-serif;
  letter-spacing: 2px;
  font-weight: 300;
}
 
.icons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}
 
.icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
 
footer p {
  font-size: 14px;
  opacity: 0.9;
}
 
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
  }
 
  .logo {
    font-size: 24px;
  }
 
  nav {
    width: 100%;
    text-align: center;
  }
 
  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
 
  .pIcon {
    margin-top: 10px;
  }
 
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
 
  .about-text {
    font-size: 22px;
    max-width: 100%;
    text-align: center;
  }
 
  .about-text h2 {
    font-size: 32px;
  }
 
  .about-image img {
    width: 90%;
    max-width: 400px;
    margin-top: 20px;
  }
 
  .icons img {
    width: 30px;
    height: 30px;
  }
 
  footer {
    margin-top: auto;
    padding: 20px 0;
  }
}
 