* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', system-ui, sans-serif;
}

:root {
	--primary: #00b894;
	--secondary: #00cec9;
	--dark: #2d3436;
	--light: #f8f9fa;
}

body {
	line-height: 1.6;
	background: linear-gradient(135deg, #f8f9fa 0%, #dfe6e9 100%);
}

nav {
	background: rgba(255, 255, 255, 0.95);
	padding: 1rem 5%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
}

.nav-links {
	display: flex;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--dark);
	transition: color 0.3s;
}

.nav-links a:hover {
	color: var(--primary);
}

.hero {
	margin-top: 80px;
	padding: 4rem 5%;
	min-height: 90vh;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.hero-content {
	flex: 1 1 400px;
	padding-right: 2rem;
}

h1 {
	font-size: 3.5rem;
	color: var(--dark);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 2rem;
}

.cta-button {
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	color: white;
	padding: 1rem 2rem;
	border-radius: 30px;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.3s;
}

.cta-button:hover {
	transform: translateY(-3px);
}

.features {
	padding: 4rem 5%;
	background: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.feature-card {
	padding: 2rem;
	border-radius: 15px;
	background: var(--light);
	transition: transform 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 1rem;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

footer {
	background: var(--dark);
	color: white;
	padding: 3rem 5%;
	margin-top: 4rem;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
}

.footer-links a {
	color: white;
	text-decoration: none;
	opacity: 0.8;
}

.footer-links a:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	h1 {
		font-size: 2.5rem;
	}

	.hero {
		flex-direction: column;
		text-align: center;
	}

	.hero-content {
		padding-right: 0;
		margin-bottom: 3rem;
	}

	.footer-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-links {
		flex-direction: column;
		gap: 1rem;
	}
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.icon-map {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-star {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.icon-clock {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E") center/contain no-repeat;
}