.footer {
	background-color: #111;
	color: #D0D0D0;
	font-family: "Consolas", monospace;
	padding: 40px 20px;
	border-top: 3px solid #ffd336;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	margin-bottom: 20px;
}

.footer-section h3 {
	color: #ffd336;
	font-size: 16px;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.footer-section p,
.footer-section a,
.footer-section li {
	font-size: 14px;
	line-height: 1.6;
	color: #ddd;
	text-decoration: none;
}

.footer-section a { font-weight: bold; }

.footer-section a:hover {
	color: #fff;
	text-shadow: 0 0 5px #ffd336;
}

.footer-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-section li {
	margin-bottom: 6px;
}

.social-icons a {
	font-size: 20px;
	margin-right: 10px;
	color: #ffd336;
	text-decoration: none;
}

.social-icons a:hover {
	color: white;
}

.social-icons img {
	width: 36px;
	height: 36px;
	border-radius: 100%;

}

.social-icons img:hover {
	border-radius: 100%;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.footer-bottom {
	background-color: black;
	text-align: center;
	font-size: 13px;
	color: #aaa;
	border-top: 1px solid #333;
	padding-top: 10px;
}