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

body {
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f9f9f9;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

p {
	margin-bottom: 10px;
}

/* Header */
header {
	text-align: center;
	padding: 40px 20px;
	background-color: #fff;
	border-radius: 8px;
	margin-bottom: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

header h1 {
	font-size: 3rem;
	font-weight: 300;
	color: #222;
	margin-bottom: 10px;
}

header p {
	font-size: 1.2rem;
	color: #666;
}

/* Navigation */
nav {
	margin-bottom: 30px;
}

nav ul {
	display: flex;
	justify-content: center;
	list-style: none;
	flex-wrap: wrap;
	gap: 20px;
}

nav a {
	text-decoration: none;
	color: #555;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

nav a:hover {
	background-color: #eaeaea;
	color: #222;
}

/* Main sections */
main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

section {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

h2 {
	font-size: 2rem;
	font-weight: 300;
	color: #222;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

/* About section */
.profile-img {
	display: block;
	margin: 20px auto;
	border-radius: 50%;
	border: 4px solid #f0f0f0;
}

#about p {
	font-size: 1.1rem;
	color: #444;
	text-align: left;
}

/* Skills section */
#skills ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
}

#skills li {
	background-color: #f5f5f5;
	padding: 15px;
	border-radius: 6px;
	border-left: 4px solid #007acc;
}


/* Languages section */
#languages ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
}

#languages li {
	background-color: #f5f5f5;
	padding: 15px;
	border-radius: 6px;
	border-left: 4px solid #007acc;
}

#languages li div {
	font-size: 1.2em;
	font-weight: bold;
}

/* Projects section */
.project {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.project:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.project h3 {
	font-size: 1.5rem;
	color: #007acc;
	margin-bottom: 10px;
}

.project p {
	color: #555;
	margin-bottom: 10px;
}

.project a {
	display: inline-block;
	text-decoration: none;
	color: #007acc;
	font-weight: 500;
	border: 1px solid #007acc;
	padding: 8px 16px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.project a:hover {
	background-color: #007acc;
	color: white;
}

/* Contact section */
#contact p {
	margin-bottom: 15px;
	font-size: 1.1rem;
}

#contact a {
	color: #007acc;
	text-decoration: none;
	border-bottom: 1px dotted #007acc;
	padding-bottom: 2px;
}

#contact a:hover {
	border-bottom: 1px solid #007acc;
}

/* Footer */
footer {
	text-align: center;
	margin-top: 50px;
	padding: 20px;
	color: #888;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
	body {
		padding: 15px;
	}
	
	header h1 {
		font-size: 2.5rem;
	}
	
	nav ul {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
	
	section {
		padding: 20px;
	}
	
	#skills ul {
		grid-template-columns: 1fr;
	}
}
