body {
	font-family: "Roboto", sans-serif;
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	color: #333;
}

.container {
	max-width: 800px;
	margin: 40px auto;
	padding: 30px;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.title {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: #007bff;
	text-align: center;
	font-weight: 700;
}

.thumbnail {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
	margin: 0 auto;
	margin-bottom: 25px;
}

.description {
	font-size: 1.1em;
	line-height: 1.6;
	margin-bottom: 25px;
	color: #444;
}

.section-title {
	font-size: 1.8em;
	margin-bottom: 15px;
	color: #0056b3;
	border-bottom: 2px solid #ddd;
	padding-bottom: 10px;
	font-weight: 700;
}

.address {
	font-size: 1.1em;
	line-height: 1.5;
	margin-bottom: 25px;
	color: #555;
}

.links-container {
	display: flex;
	justify-content: space-around;
	margin-bottom: 25px;
	gap: 20px;
}

.link-button {
	flex: 1;
	background-color: #007bff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	font-size: 1.1em;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s, transform 0.3s;
}

.link-button:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
}

.icon {
	font-size: 2em;
	display: block;
	margin-bottom: 10px;
}

.thank-you {
	font-size: 1.2em;
	line-height: 1.6;
	color: #444;
	text-align: center;
	font-style: italic;
}

@media (max-width: 600px) {
	.container {
		padding: 20px;
		margin: 20px;
	}

	.links-container {
		flex-direction: column;
	}
}
