body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #fff9e3;
	margin: 0;
	color: #2d3a3a;
}

.header, .footer {
	background: linear-gradient(90deg, #b6e048 0%, #e0f7fa 100%);
	padding: 1.5rem 0;
	text-align: center;
	box-shadow: 0 2px 8px #e0e7ff;
	color: #2d3a3a;
}
.navbar {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
	background: #e0e7ff;
	border-radius: 1rem;
	padding: 0.5rem 0;
}
.navbar a {
	color: #2d3a3a;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	transition: background 0.2s, color 0.2s;
}
.navbar a:hover {
	background: #b6e048;
	color: #fff;
}
.hero {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		background: linear-gradient(135deg, #ffb347 0%, #ff7c2a 100%);
		border-radius: 2rem;
		margin: 2rem auto;
		max-width: 1100px;
		box-shadow: 0 4px 24px 0 #d1c4e9;
		padding: 2rem;
}
.hero-content { max-width: 500px; }
.hero-title { font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; }
.hero-desc { color: #666; margin-bottom: 1.5rem; }
.hero-img { max-width: 400px; border-radius: 2rem; }
.section {
		max-width: 1100px;
		margin: 2rem auto;
		background: linear-gradient(135deg, #ffb347 0%, #ffe9a7 100%);
		border-radius: 1.5rem;
		box-shadow: 0 4px 24px 0 #d1c4e9;
		padding: 2rem;
}
.card-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.card {
	background: linear-gradient(135deg, #ffe9a7 0%, #ffb347 100%);
	border-radius: 1rem;
	box-shadow: 0 2px 12px #d1c4e9;
	padding: 1.5rem;
	flex: 1 1 220px;
	max-width: 260px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	color: #2d3a3a;
}
.card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px #ff7c2a;
	background: #ffb347;
}
.card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 0.7rem;
	margin-bottom: 1rem;
	box-shadow: 0 2px 8px #b6e04833;
}
.card-title {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}
.card-desc {
	color: #555;
	font-size: 0.98rem;
}
.btn {
	background: linear-gradient(90deg, #b6e048 0%, #e0e7ff 100%);
	color: #2d3a3a;
	border: none;
	border-radius: 2rem;
	padding: 0.7rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	box-shadow: 0 2px 8px #b6e04833;
}
.btn:hover {
	background: linear-gradient(90deg, #e0e7ff 0%, #b6e048 100%);
	color: #fff;
}
.form-group { margin-bottom: 1.2rem; }
input, textarea { width: 100%; padding: 0.7rem; border-radius: 0.5rem; border: 1px solid #ddd; font-size: 1rem; }
label { font-weight: 500; margin-bottom: 0.5rem; display: block; }
.alert { background: #ffe0e0; color: #b00; padding: 1rem; border-radius: 0.5rem; margin-bottom: 1rem; text-align: center; }