.doctor-details {
	margin: 4em 2em;
}
.doctor-bio {
	background-color: #fff;
	--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.doctor-image {
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
	width: 20rem;
	height: 20rem;
}
.doctor-image img {
	object-position: top;
	object-fit: cover;
	height: 100%;
}
.doctor-content h1 {
	font-size: 2.25rem;
    line-height: 2.5rem;
	font-weight: 700;
	color: #124e94;
	margin-bottom: 1rem;
}
.doctor-content p {
	font-size: 1.25rem;
    line-height: 1.75rem;
	color: #374151;
	margin-bottom: 1.5rem;
}
.info-list i,
.contact-info i {
	color: #124e94;
}
.info-list-content  {
	font-size: 1.125rem;
    line-height: 1.75rem;
	color: #374151;
}
.info-list > div:not(:first-child) {
	margin-top: 16px;
}
.doctor-overview {
	background-color: #fff;
	--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 2rem;
    border-radius: 16px;	
}
.doctor-overview h2 {
	font-size: 1.875rem;
    line-height: 2.25rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 1.5rem;
}
.doctor-overview p,
.doctor-overview li {
	font-size: 16px;
	line-height: 1.625;
	color: #374151;
    margin-bottom: 1.5rem;
}
.doctor-overview h3,
.doctor-sidebar h3  {
	font-size: 1.5rem;
    line-height: 2rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 2rem;
}
.doctor-overview ul {
	list-style-type: none;
	padding-left: 0;
}
.doctor-overview li {
  	position: relative;
  	padding-left: 28px;
}
.doctor-overview li::before {
  	content: "\2713";
  	position: absolute;
  	left: 0;
  	top: 0;
  	font-size: 16px;
  	line-height: 1;
  	font-weight: 600;
  	color: #124e94;
  	transform: translateY(5px);
}
.doctor-sidebar {
	top: 2rem;
	position: sticky;
}
.doctor-sidebar > div {
	padding: 1.5rem;
	border-radius: 16px;
}
.doctor-sidebar form label {
	font-size: 0.875rem;
    line-height: 1.25rem;
	font-weight: 500;
	color: #374151;
	display: block;
	margin-bottom: 0.5rem;
}
.doctor-sidebar form input,
.doctor-sidebar form textarea,
.doctor-sidebar form select {
	font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.doctor-sidebar .form-group:not(:first-child),
.doctor-submit,
.contact-info >div:not(:first-child) {
	margin-top: 16px;
}
.doctor-submit {
	transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 300ms;
	color: #fff;
	background-color: #124e94;
	font-weight: 600;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	white-space: nowrap;
	width: 100%;
	border: none;
}
.doctor-submit:hover {
	color: #124e94;
	background-color: transparent;
	border: 1px solid #124e94;
}
.doctor-contact {
	padding-top: 1.5rem;
	border-width: 1px 0 0;
	border-color: #e5e7eb;
	border-style: solid;
	margin-top: 2rem;
}
.doctor-contact h4 {
	font-size: 1.125rem;
    line-height: 1.75rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 1rem;
}
.contact-info span {
	font-size: 16px;
	line-height: 1.625;
	color: #374151;
}
@media (max-width: 767px) {
	.doctor-details {
	    margin: 2em 1em;
	}
	.doctor-bio {
		flex-direction: column;
		padding: 1rem;
	    gap: 1rem;
	}
	.doctor-image {
	    width: auto;
	    height: auto;
	}
	.doctor-content h1 {
	    font-size: 24px;
	    line-height: 28px;
	}
	.doctor-content p {
	    font-size: 18px;
	    line-height: 22px;
	}
	.info-list-content {
	    font-size: 16px;
	    line-height: 20px;
	}
	.info-list > div:not(:first-child) {
	    margin-top: 0;
	}
	.doctor-overview h2 {
	    font-size: 26px;
	    line-height: 30px;
	    margin-bottom: 20px;
	}
	.doctor-overview h3, .doctor-sidebar h3 {
	    margin-bottom: 1rem;
	}
	.doctor-overview p, .doctor-overview li {
	    margin-bottom: 20px;
	}
	.doctor-sidebar {
		margin-top: 2em;
	}
}