body.dr1013biomember {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	background-color: #f9fbfd;
	color: #333;
}

/* Back to Home Button Styling */
.dr1013biomember .back-to-home {
	display: block;
	background-color: #004c99;
	color: white;
	text-align: center;
	padding: 20px 40px;
	font-size: 1.5rem;
	border-radius: 50px;
	margin: 20px auto;
	width: 220px;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.dr1013biomember .back-to-home:hover {
	background-color: #003b73;
}

.dr1013biomember .container {
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 20px;
}

.dr1013biomember .bio-section {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	align-items: center;
	margin-bottom: 50px;
}

.dr1013biomember .bio-photo {
	flex: 1 1 300px;
	text-align: center;
}

.dr1013biomember .bio-photo img {
	width: 100%;
	max-width: 300px;
	border-radius: 15px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dr1013biomember .bio-info {
	flex: 2;
}

.dr1013biomember .bio-info h2 {
	font-size: 2rem;
	margin-bottom: 10px;
	color: #004c99;
}

.dr1013biomember .bio-info p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 15px;
}

.dr1013biomember .gallery-section h3 {
	font-size: 1.8rem;
	color: #004c99;
	margin-bottom: 20px;
	text-align: center;
}

.dr1013biomember .gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.dr1013biomember .gallery-grid img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	transition: transform 0.3s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	object-fit: contain;
}

.dr1013biomember .gallery-grid img:hover {
	transform: scale(1.03);
}

@media ( max-width : 768px) {
	.dr1013biomember .bio-section {
		flex-direction: column;
		text-align: center;
	}
	.dr1013biomember .bio-info {
		text-align: left;
	}
}