/* Reset */
body, h1, h2, h3, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: white;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 20px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

nav ul li a.btn {
  border: 1px solid black;
  padding: 5px 10px;
  border-radius: 5px;
}

#hero {
  background: url('hospital.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content h2 {
  font-size: 40px;
  font-weight: bold;
}

.hero-content p {
  font-size: 18px;
  margin: 15px 0;
}

.hero-content .btn {
  background: green;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

#about {
  padding: 50px 0;
}

.about-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-grid .text {
  flex: 1;
}

.about-grid .image img {
  width: 100%;
}

#contact {
  background: #f4f4f4;
  padding: 50px 0;
}

#contact form {
  display: flex;
  flex-direction: column;
}

#contact form input,
#contact form textarea,
#contact form button {
  margin-bottom: 10px;
  padding: 10px;
}

#contact form button {
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}
