* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: #eaecf1;
	color: #1a1a1a;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 20px;
	border-radius: 12px;
}
.body {
	width: 80%;
	max-width: 1200px;
	border: 1px solid #c6d1d9;
	margin: auto;
	border-radius: 12px;
	overflow: clip;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	background: #f0f2f6;
	background: linear-gradient(
		170deg,
		rgba(240, 242, 246, 1) 0%,
		rgba(234, 236, 240, 1) 54%,
		rgba(225, 227, 232, 1) 100%
	);
	/* position: sticky; */
}
header {
	border-bottom: 1px solid #c6d1d9;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 5%;
	/* background: rgba(255, 255, 255, 0.6); */
	backdrop-filter: blur(12px);
	/* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
	position: sticky;
	top: 0;
	z-index: 10;
	/* margin-top: 20px; */
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo img {
	height: 40px;
}

nav a {
	margin: 0 1rem;
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s;
}

nav a:hover {
	color: #000;
}

.hero {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 3.5rem 2rem;
}

.hero img {
    width: 30%;
    margin-bottom: 1rem;
    animation: float 6s ease-in-out infinite;
    max-width: 400px;
}

.hero h1 {
	font-size: 2.8rem;
	margin-bottom: 1rem;
}
.header-title {
	line-height: 23px;
}
.header-title h1 {
	font-size: 33px;
	font-weight: bold;
}
.header-title h2 {
	display: block;
	font-weight: 500;
}
.hero p {
	font-size: 1.1rem;
	max-width: 600px;
	margin-bottom: 2rem;
	color: #444;
}

.cta {
	background-color: #1a1a1a;
	color: white;
	padding: 0.8rem 2rem;
	border: none;
	border-radius: 9px;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s;
	box-shadow: 4px 16px 40px rgba(0,0,0,0.2);
	/* border: 1px solid white; */
}

.cta:hover {
	background-color: #333;
}

footer {
	text-align: center;
	padding: 1.5rem;
	font-size: 0.9rem;
	color: #777;
	/* background: #f4f7fa; */
	/* border-top: 1px solid #c6d1d9; */
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
	100% {
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	nav a {
		margin: 0 0.5rem;
	}
	.hero h1 {
		font-size: 2.2rem;
	}
	.hero p {
		font-size: 1rem;
	}
}
