.doctor-profile {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.doctor-profile__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

.doctor-profile__image {
  width: 100%;
  max-width: 300px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-profile__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.doctor-profile__details h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.doctor-profile__details p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.doctor-profile__details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.doctor-profile__details ul {
  list-style: none;
  padding: 0;
}

.doctor-profile__details ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.doctor-profile__contact {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.doctor-profile__contact h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.doctor-profile__contact form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.doctor-profile__contact label {
  font-weight: bold;
}

.doctor-profile__contact input,
.doctor-profile__contact textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.doctor-profile__contact button {
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 10px 20px;
  background: #16a085;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.doctor-profile__contact button:hover {
  background: #138f75;
}