html, body {
	height: 100%;
	margin: 0;
}

.header_strip {
	background-color: #676a6f;
	height: 80px;
	width: 100%;
	padding-bottom: 5px;
}

.header_content {
	width: 850px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 3px;
	text-align: left;
	font-weight: bolder;
}

.top_logo {
	padding-left: 110px;
}

.practice-container {
	background: #FFFFFF;
	display: flex;
	justify-content: space-between;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.practice-column {
	background: #FFFFFF;
	flex: 1;
	padding: 20px;
	border-right: 1px solid #ccc;
	text-align: left;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 20px 5px -20px rgba(0,0,0,0.45) inset,
	0px -20px 5px -20px rgba(0,0,0,0.45) inset;
}

.practice-column-shadow {
	background: #FFFFFF;
	flex: 1;
	padding: 20px;
	font-size: 18px;
	border-right: 1px solid #ccc;
	text-align: left;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 20px 5px -20px rgba(0,0,0,0.45) inset,
	0px -20px 5px -20px rgba(0,0,0,0.45) inset,
	20px 0px 5px -20px rgba(0,0,0,0.45) inset;
}

.content {
	font-size: 12px;
	line-height: 1.5;
	flex-grow: 1;
}

.content-strong {
	font-weight: bold;
}

.learn-more {
	display: block;
	text-align: center;
	font-weight: bold;
	color: green;
	text-decoration: none;
	margin-top: auto;
}

.learn-more:hover {
	display: block;
	text-align: center;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	margin-top: auto;
}

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #EbEbEb;
	background-image: url(images/bg.jpg);
}
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333;
	margin-top: 0;
	background: #d1d3d4;
}
.body_container {
	width: 850px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/index_content_bg.png);
	background-repeat: repeat-y;
}

.contact-link {
	color: #000000;
	text-decoration: none;
}

.contact-link:hover {
	color: #808080;
}

.name {
	font-size: 18px;
	font-weight: bold;
}

.profile-picture {
	width: 200px;
	height: auto;
	border-radius: 5px;
	margin-top: 10px;
	flex: none;
	box-shadow: 0px 0px 0px 1px rgba(0,0,0,0.05),
	0px 0px 0px 1px rgba(209,213,219,1) inset;
}

.divider {
	border: 0;
	height: 1px;
	background: #333;
	background-image: linear-gradient(to right, #ccc, #333, #ccc);
	margin: 20px 0;
}

.map-and-contact {
	display: flex;
	flex-wrap: wrap;
	margin-top: 20px;
}

.map {
	flex: 1;
	min-width: 200px;
	margin-right: 20px;
}

.contact-info {
	flex: 2;
	min-width: 200px;
}

.contact-info strong {
	font-size: 16px;
}

/* Contact Form Styles */
.contact-form-container {
	margin-top: 20px;
}

.contact-form-container h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.form-section {
	margin-bottom: 20px;
}

.form-group {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.form-group label {
	flex: 1;
	text-align: left;
}

.form-group input,
.form-group textarea {
	flex: none;
	width: 300px; /* Set a fixed width for all input fields */
	padding: 8px;
	box-sizing: border-box;
	text-align: right; /* Right-align text inside the input fields */
}

.form-group.full-width input,
.form-group.full-width textarea {
	width: 100%;
	text-align: left; /* Left-align text inside full-width fields */
}

.form-group.full-width {
	flex-direction: column;
}

.form-group.full-width label {
	margin-bottom: 5px;
}

.form-group.submit-group {
	justify-content: flex-end;
}

.form-group.submit-group input[type="submit"] {
	width: auto;
	padding: 10px 20px;
	background-color: #676a6f;
	color: #fff;
	border: none;
	cursor: pointer;
}

.form-group.submit-group input[type="submit"]:hover {
	background-color: #505357;
}

@media (max-width: 600px) {
	.form-group {
		flex-direction: column;
		align-items: flex-start;
	}

	.form-group label {
		margin-bottom: 5px;
	}

	.form-group input,
	.form-group textarea {
		width: 100%;
		text-align: left;
	}
}

.form-group.left-align {
	display: block;
	margin-bottom: 15px;
}

.form-group.left-align label {
	margin-bottom: 5px;
}

.form-group.left-align textarea,
.form-group.left-align input[type="submit"] {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
	text-align: left;
}

.form-group.left-align input[type="submit"] {
	width: auto;
	padding: 10px 20px;
	background-color: #676a6f;
	color: #fff;
	border: none;
	cursor: pointer;
}

.form-group.left-align input[type="submit"]:hover {
	background-color: #505357;
}

.contact-icons {
	display: flex;
	align-items: center;
}
