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

:root {
	/* UMKM Center Brand Colors - HSL Values */
	--primary: hsl(155, 40%, 20%);
	--primary-foreground: hsl(0, 0%, 100%);
	--accent: #9EC22A;
	--secondary: #EA2334;
	--accent-foreground: hsl(0, 0%, 100%);
	--background: hsl(0, 0%, 100%);
	--foreground: hsl(222, 84%, 5%);
	--muted: hsl(210, 40%, 96%);
	--muted-foreground: hsl(215, 16%, 47%);
	--border: hsl(214, 32%, 91%);
	--accent-2:#3E3220;

	/* Section specific colors */
	--hero-bg: hsl(155, 40%, 18%);
	--partners-bg: hsl(210, 40%, 98%);
	--services-bg: hsl(210, 20%, 95%);
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
	line-height: 1.6;
	color: var(--foreground);
	background-color: var(--background);
}
a{
	text-decoration: none;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Animations */
.fade-in {
	animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
