body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	background: radial-gradient(ellipse at top left, #1e293b, #0f172a);
	color: #fff;
	line-height: 1.7;
	padding: 2rem;
	background-attachment: fixed;
	overflow-x: hidden;
}
#neural-bg {
	will-change: transform;
}
.g-recaptcha {
	margin-bottom: 1.5rem;
}
.container {
	max-width: 960px;
	margin: 0 auto;
	margin-top: 75px;
	animation: fadeIn 1.2s ease-in;
	position: relative;
	z-index: 1;
}
h1, h2 {
	color: #ffffff;
	margin-bottom: 1rem;
}
h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
}
h2 {
	font-size: 2rem;
	font-weight: 600;
	border-bottom: 2px solid #3b82f6;
	padding-bottom: 0.3rem;
	display: inline-block;
	margin-top: 2rem;
}
p, li {
	color: #cbd5e1;
	font-size: 1.125rem;
}
.section {
	margin-bottom: 3rem;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 1rem;
	padding: 2rem;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	backdrop-filter: blur(10px);
	transition: transform 0.3s;
}
.section:hover {
	transform: scale(1.01);
}
.headshot {
	float: right;
	margin: 0 0 1rem 2rem;
	width: 150px;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

ul {
	list-style: disc;
	padding-left: 1.5rem;
}
a.button {
	display: inline-block;
	background-color: #3b82f6;
	color: #fff;
	padding: 0.9rem 1.75rem;
	font-size: 1.125rem;
	border-radius: 0.5rem;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(59,130,246,0.5);
	transition: all 0.3s ease;
}
a.button:hover {
	background-color: #2563eb;
	box-shadow: 0 0 20px rgba(59,130,246,0.7);
}
.footer {
	font-size: 0.875rem;
	color: #94a3b8;
	text-align: center;
	margin-top: 3rem;
}
.footer a {
	color: #94a3b8;
	text-decoration: underline;
}
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
	backdrop-filter: blur(8px);
}
.nav-container {
	max-width: 100%;
	padding: .22rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nav-logo {
	display: flex;
	align-items: center;
}
.nav-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	margin: 0;
	padding: 0;
}
.nav-links a {
	color: #cbd5e1;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
}
.nav-links a:hover {
	color: #3b82f6;
}
.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #cbd5e1;
	font-size: 2rem;
	cursor: pointer;
}
/* Form Elements */
label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}
input, textarea {
	width: 98%;
	padding: 0.75rem;
	margin-bottom: 1.5rem;
	border-radius: 0.5rem;
	border: none;
	font-size: 1rem;
}
button {
	background-color: #3b82f6;
	color: #fff;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 1rem;
	border-radius: 0.5rem;
	cursor: pointer;
	display: block;
	margin: 0 auto;
}
button:hover {
	background-color: #2563eb;
}
/* Responsive */
@media (max-width: 768px) {
	.nav-container {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	}
	.nav-toggle {
		display: block;
	}
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		margin-top: 1rem;
	}
	.nav-open .nav-links {
		display: flex;
	}
	.nav-links li {
		width: 100%;
		padding: 0.5rem 0;
	}
	.nav-links a {
		width: 100%;
		display: block;
	}
}