
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: linear-gradient(120deg, #0f2027, #be849c 80%);
    color: #be849c;
    min-height: 100vh;
}


.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 3vw;
	background: rgba(20, 30, 48, 0.85);
	box-shadow: 0 2px 12px rgba(0,0,0,0.15);
	position: sticky;
	top: 0;
	z-index: 100;
}
.logo {
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 2px;
	color: #a766b9;
	text-shadow: 0 0 8px #be849c;
}
.navbar ul {
	list-style: none;
	display: flex;
	gap: 2rem;
	margin: 0;
	padding: 0;
}
.navbar a {
	color: #be849c;
	text-decoration: none;
	font-size: 1.1rem;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	transition: background 0.2s, color 0.2s;
}
.navbar a:hover {
	background: #d6a3b7;
	color: #fff;
	box-shadow: 0 0 10px #be849c99;
}


.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45vh;
	background: linear-gradient(100deg, #232526 60%, #be849c 120%);
	box-shadow: 0 4px 24px #ff69b433;
	margin-bottom: 2rem;
}
.hero-content {
	text-align: center;
}
.hero h1 {
	font-size: 2.8rem;
	margin-bottom: 0.5rem;
	color: #ffb6d5;
	text-shadow: 0 0 12px #ffd1ea;
}
.hero p {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: #be849c;
}
.btn {
	background: #832e73;
	color: #be849c;
	padding: 0.8rem 2.2rem;
	border: none;
	border-radius: 30px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 0 16px #be849c;
	transition: background 0.2s, color 0.2s, transform 0.2s;
	text-decoration: none;
	display: inline-block;
}
.btn:hover {
	background: #d6a3b7;
	color: #ffffff;
	transform: scale(1.05);
}


.cards {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 2rem 0;
}
.card {
	background: rgba(30, 40, 60, 0.95);
	border-radius: 18px;
	box-shadow: 0 4px 24px #be849c;
	padding: 2rem 1.5rem;
	min-width: 260px;
	max-width: 320px;
	flex: 1 1 260px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}
.card h2 {
	color: #be849c;
	margin-bottom: 0.7rem;
	font-size: 1.4rem;
}
.card p {
	color: #be849c;
	font-size: 1.05rem;
}
.card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px #be849c99;
	background: #7e3658;
	color: #be849c;
}



.footer {
	background: rgba(20, 30, 48, 0.95);
	color: #be849c;
	text-align: center;
	padding: 1.5rem 0 1rem 0;
	margin-top: 3rem;
	font-size: 1rem;
	box-shadow: 0 -2px 12px #ff69b433;
}
.footer .eco {
	color: #be849c;
	font-weight: bold;
}


