body {
	margin: 0;
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #f7f8fa;
	color: #222;
}

header {
	background: linear-gradient(90deg, #23408f 0%, #1e5fae 100%);
	color: #fff;
	padding: 2rem 0 1rem 0;
	box-shadow: 0 8px 32px rgba(79,140,255,0.18), 0 2px 12px rgba(0,0,0,0.10);
	z-index: 10;
	position: relative;
	border-radius: 0 0 1.2rem 1.2rem;
}

.container {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}

header h1 {
	margin: 0;
	font-size: 2.5rem;
	font-weight: 700;
}

header h2 {
	margin: 0.5rem 0 1rem 0;
	font-size: 1.2rem;
	font-weight: 400;
}

nav ul {
	list-style: none;
	padding: 0;
	display: flex;
	gap: 2rem;
}

nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s, background 0.2s;
	padding: 0.4em 1em;
	border-radius: 0.7em;
}

nav a:hover {
	color: #fff;
	background: linear-gradient(90deg, #4f8cff 0%, #1e5fae 100%);
	box-shadow: 0 2px 8px rgba(79,140,255,0.18);
	text-decoration: none;
}
nav a:focus {
	color: #fff;
	background: linear-gradient(90deg, #4f8cff 0%, #1e5fae 100%);
	box-shadow: 0 2px 8px rgba(79,140,255,0.18);
	text-decoration: none;
	outline: none;
}

.section {
	background: #fff;
	margin: 2rem auto;
	padding: 2.5rem 2rem;
	border-radius: 1rem;
	width: 90%;
	max-width: 900px;
	box-shadow: 0 12px 40px rgba(79,140,255,0.22), 0 4px 16px rgba(0,0,0,0.10);
	z-index: 2;
	position: relative;
}
/* Pop effect for About section on main page */
/* All .section boxes now match About Me style */

.section h3 {
	margin-top: 0;
	color: #4f8cff;
	font-size: 1.5rem;
}

footer {
	background: #eaf1fb;
	color: #4f8cff;
	text-align: center;
	padding: 1rem 0;
	font-size: 1rem;
	margin-top: 2rem;
	border-top: 1px solid #dbeafe;
	box-shadow: 0 -8px 32px rgba(79,140,255,0.14), 0 -2px 12px rgba(0,0,0,0.08);
	z-index: 10;
	position: relative;
	border-radius: 1.2rem 1.2rem 0 0;
}

@media (max-width: 600px) {
	.container {
		width: 98%;
	}
	.section {
		padding: 1rem;
	}
	nav ul {
		gap: 1rem;
		flex-wrap: wrap;
	}
	header h1 {
		font-size: 2rem;
	}
}
