body {
  font-family: Arial, sans-serif;
  padding: 0;
  background-color: white;
  text-align: center;
  margin: 0;
  background: url("../Images/pexels-chokniti-khongchum-1197604-2280547.jpg")
    center;
  color: black;
}

nav ul {
  list-style: none;
  padding: 0;
}
nav ul li {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  cursor: pointer;
}
.page {
  background: white;
  padding: 30px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 10px;
}

.btn {
  background: green;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  border-radius: 5px;
}
footer {
  background: black;
  color: white;
  padding: 10px;
  width: 100%;
  bottom: 0;
  left: 0;
}

nav ul li a:hover {
  text-decoration: underline;
  color: lightgray;
}
header {
  background: url("../Images/pexels-pixabay-208512.jpg") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 15px 0;
}

#why-choose-us {
  background: white;
  padding: 30px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 10px;
  color: black;
  text-align: left;
}

#why-choose-us ul {
  list-style: disc;
  margin-left: 10px;
}

#faq {
  background: white;
  padding: 30px;
  margin: 10px auto;
  max-width: 800px;
  border-radius: 10px;
  color: black;
  text-align: left;
}

.faq h4 {
  font-weight: bold;
  margin-top: 15px;
}

.faq p {
  margin-left: 15px;
}
#medical-services {
  background: url("../Images/pexels-karolina-grabowska-4386464.jpg") no-repeat
    center center;
  background-size: cover;
  padding: 30px;
  margin: 10px auto;
  max-width: 800px;
  border-radius: 10px;
}

#medical-services h3 {
  text-align: center;
  margin-bottom: 20px;
  color: black;
  font-size: 20px;
}

.service-item p {
  color: black;
  font-size: 15px;
  line-height: 1.5;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.service-item {
  background: rgb(150, 220, 150);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.service-item h4 {
  margin-bottom: 5px;
  font-size: 20px;
  color: black;
}

#contact {
  background: white;
  padding: 40px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 15px;
  text-align: center;
}

#contact h2 {
  font-size: 30px;
  color: black;
  margin-bottom: 20px;
}

#contact p {
  font-size: 16px;
  color: red;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 20px;
  margin: 5px 0;
}

.footer-contact {
  background: black;
  color: white;
  padding: 10px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
}

#appointment {
  background: white;
  padding: 40px;
  margin: 20px auto;
  max-width: 800px;
  border-radius: 15px;
  text-align: center;
}

#appointment h2 {
  font-size: 30px;
  color: black;
  margin-bottom: 20px;
}

.appointment-intro {
  font-size: 15px;
  color: black;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  color: black;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  font-size: 15px;
  border: 1px solid green;
  border-radius: 5px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: green;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button.btn {
  background: green;
  color: white;
  font-size: 20px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

button.btn:hover {
  background: green;
}
