html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	min-height: 100vh;
	width: 100vw;
	overflow-x: hidden;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #111;
}

.hero-container {
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1;
}

.carousel-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s;
	z-index: 1;
	filter: brightness(0.6) blur(1px);
}
.carousel-img.active {
	opacity: 0.5;
	z-index: 2;
}

.hero-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 320px;
	max-width: 90vw;
	background: rgba(255,255,255,0.92);
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
	border-radius: 18px;
	padding: 32px 28px 24px 28px;
	z-index: 10;
	text-align: center;
	backdrop-filter: blur(2px);
}
.hero-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 320px;
	max-width: 90vw;
	background: rgba(255,255,255,0.97);
	box-shadow: 0 8px 32px rgba(0,0,0,0.18);
	border-radius: 18px;
	padding: 32px 28px 24px 28px;
	z-index: 10;
	text-align: center;
	backdrop-filter: blur(2px);
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.hero-card h1 {
	margin: 0 0 12px 0;
	font-size: 2.2rem;
	color: #222;
	margin: 0 0 12px 0;
	font-size: 2.2rem;
	color: #0d47a1;
	letter-spacing: 2px;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	font-weight: 700;
}
.hero-card h2 {
	color: #263238;
	font-size: 1.15rem;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	font-weight: 500;
	margin-bottom: 14px;
}
.hero-card h4 {
	color: #1565c0;
	font-size: 1.05rem;
	font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 0;
	word-break: break-word;
}
.hero-card a {
	color: #1565c0;
	text-decoration: underline;
	font-family: inherit;
	font-weight: inherit;
	transition: color 0.2s;
}
.hero-card a:hover {
	color: #0d47a1;
}
.hero-card p {
	margin: 0;
	color: #444;
	font-size: 1.1rem;  
}