body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
	color: #333;
	text-align: center;
}

.hero {
	background: url('grooveorg-hero-image.jpg') center/cover no-repeat;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.overlay {
	background: rgba(0, 0, 0, 0.7);
	padding: 40px;
	color: white;
	font-size: 2rem;
	font-weight: bold;
}

.content-container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 90%;
	margin: 20px auto;
}

main {
	flex: 2;
	margin-right: 20px;
}

.bold-section {
	padding: 35px;
	background: white;
	margin-bottom: 25px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	font-weight: bold;
	font-size: 1.3rem;
	text-align: center;
}

.appraisal .price {
	font-size: 2rem;
	color: #d9534f;
	font-weight: bold;
}

.buy-now {
	text-align: center;
}

.buy-button {
	display: inline-block;
	margin: 20px;
	padding: 15px 30px;
	background: #0073e6;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.3rem;
	font-weight: bold;
}

.buy-button:hover {
	background: #005bb5;
}

.sidebar {
	flex: 1;
	max-width: 300px;
	text-align: left;
}

.ad {
	background: #ddd;
	padding: 25px;
	text-align: center;
	margin-bottom: 15px;
	border-radius: 10px;
	font-weight: bold;
}

.left-align ul, .uses ul {
	text-align: left;
	padding-left: 20px;
}

form {
	display: flex;
	flex-direction: column;
}

input, textarea, button {
	margin: 10px 0;
	padding: 14px;
	width: 100%;
	font-size: 1.2rem;
	font-weight: bold;
}

button {
	background: #0073e6;
	color: white;
	border: none;
	cursor: pointer;
}

button:hover {
	background: #005bb5;
}