:root {
	--transition-duration: 0.5s;
	--max-container-width: 1200px;
	--video-radius: 10px;
	--primary-color: #1a49c6;
	--secondary-color: #666;
}
.hnz-video-section {
	display: flex;
	gap: 3rem;
	align-items: center;
	max-width: var(--max-container-width);
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background: #fff;
	padding: 30px;
}
.hnz-info-container {
	flex: 1;
	transition: all var(--transition-duration) ease;
}
.hnz-info-container h2 {
	margin-bottom: 1.5rem;
	color: #333;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
}
.hnz-info-container p {
	margin-bottom: 2.5rem;
	color: var(--secondary-color);
	font-size: 1.1rem;
}
.hnz-counters {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.hnz-counter-item {
	text-align: center;
	padding: 15px;
	transition: transform 0.3s;
}
.hnz-video-container,
.hnz-video-container video {
	border-radius: var(--video-radius);
	transition: all var(--transition-duration) ease;
}
.hnz-counter-item:hover {
	transform: translateY(-5px);
}
.hnz-counter-number {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 8px;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hnz-counter-label {
	color: var(--secondary-color);
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
}
.hnz-video-container {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(248, 249, 250, 0.2);
	position: relative;
	min-height: 300px;
}
.hnz-video-container video {
	width: 100%;
	max-width: 500px;
	height: auto;
	cursor: pointer;
	display: block;
	background: #092267;
}
.hnz-video-section.expanded {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	z-index: 1000;
	background: rgba(250, 250, 250, 0.98);
	padding: 20px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.hnz-video-section.expanded .hnz-info-container {
	display: none;
}
.hnz-video-section.expanded .hnz-video-container {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(250, 250, 250, 0.6);
	padding: 1rem;
	border-radius: 10px;
	z-index: 999;
}
.hnz-video-section.expanded .hnz-video-container video {
	max-width: 70vw;
	max-height: 70vh;
}
.hnz-video-controls {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.7);
	padding: 12px 25px;
	border-radius: 30px;
	display: flex;
	gap: 20px;
	align-items: center;
	z-index: 20;
	opacity: 1;
	transition: opacity 0.3s;
}
.hnz-video-controls button {
	background: 0 0;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	padding: 5px;
	transition: transform 0.2s;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hnz-video-controls button:hover {
	transform: scale(1.2);
}
@media (max-width: 1024px) {
	.hnz-counters {
		grid-template-columns: repeat(2, 1fr);
	}
	.hnz-video-section {
		gap: 2rem;
	}
}
@media (max-width: 768px) {
	
	
	.hnz-video-section {
		flex-direction: column;
		gap: 2rem;
		padding: 20px;
	}
	.hnz-info-container,
	.hnz-video-container {
		width: 100%;
	}
	.hnz-video-container video {
		max-width: 100%;
	}
	.hnz-counters {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	.hnz-video-section.expanded {
		position: relative;
		background: #fff;
		padding: 20px;
	}
	.hnz-video-section.expanded .hnz-info-container {
		display: block;
	}
	.hnz-video-section.expanded .hnz-video-container {
		position: relative;
		background: #f8f9fa;
		width: 100%;
		max-width: 100%;
	}
}