/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #b30000; /* deep red */
  color: white;
  padding: 15px 30px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  margin-right: 15px;
}

.site-title {
  font-size: 22px;
  font-weight: bold;
}

/* Navbar */
.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(179,0,0,0.8), rgba(179,0,0,0.8)), url("hospital-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.btn {
  background: white;
  color: #b30000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #e6e6e6;
}

/* About Section */
.about {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about h2 {
  color: #b30000;
  font-size: 28px;
  margin-bottom: 20px;
}

.about p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: #b30000;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}
