.header-section img {
	width: 100%;
	max-width: 1000px;
	border-radius: 20px;
	box-shadow: 0 0 80px #00ffcc;
}

.about {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	margin-bottom: 150px;
}

.about h2 {
	color: #00ffcc;
	margin-top: 60px;
	text-shadow: 0 0 40px #00ffcc;
	font-size: 3.5em;
	font-weight: 900;
	letter-spacing: 0.03em;
	margin-bottom: 40px;
}

#intro {
	color: #00ffcc;
	font-size: 1.2em;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 20px;
}

.about-box {
	background: rgba(20, 30, 50, 0.6);
	border: 1px solid rgba(0, 255, 204, 0.8);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 0 30px rgba(0, 255, 204, 0.15);
	backdrop-filter: blur(10px);
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 0 50px rgba(0, 255, 204, 0.3);
}

.about-box h3 {
	color: #00ffcc;
	font-size: 1.8em;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 0 0 15px #00ffcc;
	border-bottom: 2px solid rgba(0, 255, 204, 0.3);
	padding-bottom: 10px;
}

.about-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-box li {
	margin-bottom: 12px;
	padding-left: 20px;
	position: relative;
	color: #e0e0e0;
	font-size: 1.1rem;
}

.about hr {
	display: none;
}

@media (max-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.about-box {
		padding: 20px;
	}

	.about-box h3 {
		font-size: 1.5em;
	}
}

.projects {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.projects h2 {
	color: #00ffcc;
	text-shadow: 0 0 40px #00ffcc;
	font-size: 2em;
	font-weight: 900;
	letter-spacing: 0.03em;
	margin-bottom: 40px;
}

.project-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 20px;
}

.project-box {
	background: rgba(20, 30, 50, 0.6);
	border: 1px solid rgba(0, 255, 204, 0.8);
	border-radius: 20px;
	padding: 10px;
	box-shadow: 0 0 50px rgba(0, 255, 204, 0.3);
	backdrop-filter: blur(10px);
	text-align: center;
}

.project-box img {
	width: 90%;
	max-width: 1000px;
	border-radius: 20px;
	box-shadow: 0 0 30px #00ffcc;
}

.project-box a {
	margin-top: 20px;
	color: #00ffcc;
	text-shadow: 0 0 40px #00ffcc;
	font-size: 1.1em;
	font-weight: 900;
	letter-spacing: 0.03em;
	margin-bottom: 40px;
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.project-box a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #00ffcc, #00ffff);
	transition: width 0.3s ease;
	box-shadow: 0 0 10px #00ffcc;
}

.project-box a:hover {
	color: #ffffff;
	text-shadow: 0 0 60px #00ffcc, 0 0 80px #00ffff;
	transform: translateY(-3px);
}

.project-box a:hover::after {
	width: 100%;
}

.references {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.references h2 {
	color: #00ffcc;
	text-shadow: 0 0 40px #00ffcc;
	font-size: 2em;
	font-weight: 900;
	letter-spacing: 0.03em;
	margin-bottom: 40px;
}

.reference-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 20px;
}

.reference-box {
	background: rgba(20, 30, 50, 0.6);
	border: 1px solid rgba(0, 255, 204, 0.8);
	border-radius: 20px;
	padding: 10px;
	box-shadow: 0 0 50px rgba(0, 255, 204, 0.3);
	backdrop-filter: blur(10px);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-box img {
	width: 90%;
	max-width: 1000px;
	border-radius: 20px;
	box-shadow: 0 0 30px #00ffcc;
}

.reference-box a {
	margin-top: 20px;
	color: #00ffcc;
	text-shadow: 0 0 40px #00ffcc;
	font-size: 1.1em;
	font-weight: 900;
	letter-spacing: 0.03em;
	margin-bottom: 40px;
	display: inline-block;
	position: relative;
	text-decoration: none;
	transition: all 0.3s ease;
}

.reference-box a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #00ffcc, #00ffff);
	transition: width 0.3s ease;
	box-shadow: 0 0 10px #00ffcc;
}

.reference-box a:hover {
	color: #ffffff;
	text-shadow: 0 0 60px #00ffcc, 0 0 80px #00ffff;
	transform: translateY(-3px);
}

.reference-box a:hover::after {
	width: 100%;
}

.contact-container p {
	font-size: 1.5rem;
}

.contact-container {
	margin: 0 auto;
	width: 100%;
	max-width: 360px;
	background: rgba(20, 30, 50, 0.92);
	padding: 50px 60px;
	border-radius: 20px;
	box-shadow: 0 0 50px rgba(0, 255, 204, 0.3);
	backdrop-filter: blur(12px);
	text-align: center;
	border: 1px solid rgba(0, 255, 204, 0.8);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-container hr {
	color: #00ffcc;
	margin: 20px 0px;
}

.contact-container code {
	background-color: #2a2a2a;
	padding: 2px 6px;
	border-radius: 4px;
	font-family: 'Courier New', monospace;
	font-size: 0.95em;
	color: #00ffaa;
}

footer p {
	margin: 35px;
	color: #00ffcc;
	text-align: center;
	font-size: 1.1em;
}

@media (max-width: 480px) {
	.contact-container {
		max-width: 90%;
		padding: 30px 20px;
		border-radius: 15px;
	}

	.contact-container p {
		font-size: 1.2rem;
	}

	.contact-container code {
		font-size: 0.85em;
		word-break: break-word;
	}
}

@media (max-width: 360px) {
	.contact-container {
		max-width: 90%;
		padding: 25px 15px;
	}

	.contact-container p {
		font-size: 1rem;
	}
}
