body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('Hospital.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 90px;
  height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(34,34,34,0.85);
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 1em;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffcc00;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 90px);
  gap: 30px;
  padding: 20px;
  box-sizing: border-box;
}

.information {
  background-color: rgba(255,255,255,0.9);
  padding: 25px;
  border-radius: 8px;
  font-size: 20px;
  width: 80%;
  max-width: 800px;
}

.center-text {
  text-align: center;
}
