body
{
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
}
header
{
	padding: 10px 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
header img
{
	max-width: 120px;
	height: auto;
}
header h1
{
	margin: 0;
	font-size: 4rem;
	line-height: 1;
}
h2
{
	text-align: center;
	margin-top: 10px;
	font-size: 1.5rem;
}
.container
{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 20px auto;
	padding: 10px;
}
.section
{
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}
.section h2
{
	margin-top: 0;
	font-size: 1rem;
}
.section video
{
	width: 100%;
	border-radius: 8px;
}
.button
{
	display: inline-block;
	margin-top: 10px;
	padding: 10px 15px;
	background: white;
	color: black;
	border: 1px solid black;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	transition: background 0.3s, color 0.3s;
}
@media (max-width: 1000px)
{
	.container
	{
		grid-template-columns: repeat(2, 1fr);
	}
}