body {
	font-family: "Poppins", sans-serif;
	margin: 0;
	background: #ffffff;
	color: #111;
}

header {
	background: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 3em;
}

nav ul {
	display: flex;
	list-style: none;
	gap: 1.5em;
	margin: 0;
}

nav a {
	text-decoration: none;
	color: #111;
	font-weight: 500;
}

nav a.active,
nav a:hover {
	color: #7ac943;
}

.logo {
	height: 50px;
}

.hero {
	text-align: center;
	padding: 6em 2em;
}

.btn {
	background: #7ac943;
	color: white;
	padding: 0.8em 1.6em;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

.btn:hover {
	background: #5da832;
}

.content,
.about,
.contact {
	padding: 3em 2em;
	text-align: center;
}

.grid {
	display: flex;
	justify-content: center;
	gap: 2em;
	flex-wrap: wrap;
}

.card {
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	padding: 1em;
	width: 280px;
}

.card img {
	width: 100%;
	border-radius: 6px;
}

.profile {
	border-radius: 50%;
	width: 140px;
}

form {
	display: flex;
	flex-direction: column;
	gap: 1em;
	width: 300px;
	margin: 0 auto;
}

input,
textarea {
	padding: 0.8em;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-family: inherit;
}

button {
	background: #7ac943;
	border: none;
	color: white;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
	padding: 0.8em;
}

button:hover {
	background: #5da832;
}

.socials a {
	margin: 0 10px;
	color: #7ac943;
	text-decoration: none;
}

.socials a:hover {
	text-decoration: underline;
}
