.banner img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

.contact-widget {
  background: #f15a24;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.contact-widget h3 {
  margin-bottom: 15px;
}

.contact-widget a {
  color: #fff;
  text-decoration: underline;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #fff;
  padding: 15px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
  color: #f15a24;
}

.hero {
  background: url('images/medical-bg.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.content {
  padding: 40px;
  background: #fff;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 8px;
}

.content h2 {
  color: #f15a24;
}

form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
}

form button {
  background: #f15a24;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

form button:hover {
  background: #d1491e;
}

footer {
  text-align: center;
  padding: 15px;
  background: #333;
  color: #fff;
  margin-top: 40px;
}

/* Services dropdown inside content */
.services-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.services-list li {
  background: #f9f9f9;
  padding: 12px;
  margin: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.services-list li:hover {
  background: #f1f1f1;
}

.services-list .dropdown span {
  font-weight: bold;
  display: block;
}

.services-list .dropdown-content {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin-top: 8px;
}

.services-list .dropdown-content li {
  background: #fff;
  margin: 4px 0;
  padding: 10px;
  border: 1px solid #ddd;
}

.services-list .dropdown-content li a {
  text-decoration: none;
  color: #333;
}

.services-list .dropdown-content li a:hover {
  color: #f15a24;
}

/* Show dropdown on hover */
.services-list .dropdown:hover > .dropdown-content {
  display: block;
}
